Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

problem in delegate?

$
0
0
namespace review_of_c
{
class Program
{

public delegate int m(int x, int y);

static void Main(string[] args)
{
m res= new m(sum);
res += new m(mult);
int d=res(5,6);
Console.WriteLine(d);

}
public static int sum(int x, int y)
{
int z = x + y;
return z;

}
public static int mult(int x, int y)
{
int z = x * y;
return z;

}

}

this code give me one result for one fuction (mult), why? i want to obtain the both functions result (mult)and(sum) , plz help me.

Viewing all articles
Browse latest Browse all 2703

Trending Articles