You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
553 B
Plaintext

/*
* C# Program to Display Results using Delegates
*/
using System;
public class example
{
public delegate int DelegateHandler(int a, int b);
static void Main(string[] args)
{
Results Results = new Results();
DelegateHandler sum = new DelegateHandler(Results.sum);
int result = sum(50, 20);
Console.WriteLine("Result is: " + result);
Console.ReadLine();
}
}
public class Results
{
public int sum(int a, int b)
{
return a + b;
}
}
/*
Result is: 70