C#如何声明一个INT类型的输入输出委托

 我来答
iceser
2010-03-02 · TA获得超过2708个赞
知道大有可为答主
回答量:695
采纳率:100%
帮助的人:459万
展开全部
输入输出?

可以使用ref,,也可以通过返回值来输出

示例:

public delegate void MyDelegate1( ref int number );
public delegate int MyDelegate2(int number);

class Program
{
static void Main(string[] args)
{
int n = 0;
MyDelegate1 method1 = new MyDelegate1(MyFunction1);
MyDelegate2 method2 = new MyDelegate2(MyFunction2);
Console.WriteLine(n);
method1(ref n);
Console.WriteLine(n);
n = method2(n);
Console.WriteLine(n);
Console.ReadKey();

}

public static void MyFunction1(ref int number)
{
number++;
}

public static int MyFunction2(int number)
{
return ++number;
}

}
xiwenxiaolove
2010-03-02 · TA获得超过419个赞
知道小有建树答主
回答量:408
采纳率:0%
帮助的人:0
展开全部
INT类型的输入输出委托
什么叫输入输出委托,看不太明白
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式