using System;
class SDK{private int x;
delegate void s(int d);
private static void abc(int d)
{
Console.WriteLine(d);
}
private static void bcd(int d)
{
Console.WriteLine(d);
}public static void Main()
{
s  hello = new s(abc);
hello += new s(bcd);
hello(7);
}
}现在的情况是屏幕输出了两个7,也就是说7被同时传给了 abc(),和bcd();
如果我想给两个参数7,8.分别传给abc() 和 bcd();
程序应该怎样写。