Files
ASDV-C-Sharp/Student Sample Programs/Chap13/FuncDelegateDemo1/FuncDelegateDemo1/Form1.cs
2022-08-30 14:15:11 -05:00

22 lines
468 B
C#

using System;
using System.Windows.Forms;
namespace FuncDelegateDemo1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void demoButton_Click(object sender, EventArgs e)
{
Func<int, double> Half = x => x * 0.5;
double result = Half(25);
MessageBox.Show("Half of 25 is " + result.ToString());
}
}
}