c# 泛型委托
标签:stat new int UNC ogr OLE ram func str
public delegate tr func(t1 p1, t2 p2);//泛型委托
//TR 返回的委托类型
class MyClass
{
static public string printstring(int p1, int p2)
{
return p1 + p2 + "";
}
}
class Program
{
static void Main(string[] args)
{
var my = new Funcint,int,string>(MyClass.printstring);//创建委托
Console.WriteLine(my(1,2));//返回委托
}
}
c# 泛型委托
标签:stat new int UNC ogr OLE ram func str
原文地址:https://www.cnblogs.com/yuanzijian-ruiec/p/10094671.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
c# 泛型委托
文章链接:http://soscw.com/index.php/essay/98186.html
评论