C#基础进阶

2021-01-28 15:12

阅读:426

标签:gets   code   closed   vat   学习   col   read   one   参数   

观看C#高级教程进行学习。巩固基础,进阶学习。

1.委托

把方法当做参数来传递就是委托。委托的关键字是delegate。

技术图片技术图片
 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();
        }
    }
委托获取X的String

Invoke方法也可以调用委托所引用的方法。

C#基础进阶

标签:gets   code   closed   vat   学习   col   read   one   参数   

原文地址:https://www.cnblogs.com/cdjbolg/p/11896775.html


评论


亲,登录后才可以留言!