C#基础进阶
2021-01-28 15:12
标签:gets code closed vat 学习 col read one 参数 观看C#高级教程进行学习。巩固基础,进阶学习。 1.委托 把方法当做参数来传递就是委托。委托的关键字是delegate。 Invoke方法也可以调用委托所引用的方法。 C#基础进阶 标签:gets code closed vat 学习 col read one 参数 原文地址:https://www.cnblogs.com/cdjbolg/p/11896775.html class Program
{
private delegate string GetString();
static void Main(string[] args)
{
int x=40;
GetString a = x.ToString;//方法签名
string t = a();
Console.WriteLine("{0}", t);
Console.ReadKey();
}
}
上一篇:C#随笔随笔随笔