码迷,mamicode.com
首页 > 其他好文 > 详细

分配委托、匿名委托、委托

时间:2014-11-23 15:57:21      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   ar   color   os   sp   on   div   bs   ad   

分配委托(将命名方法分配给其委托)

using System;

public class GenericFunc
{
   public static void Main()
   {
      // Instantiate delegate to reference UppercaseString method
      Func<string, string> convertMethod = UppercaseString;
      string name = "Dakota";
      // Use delegate instance to call UppercaseString method
      Console.WriteLine(convertMethod(name));
   }

   private static string UppercaseString(string inputString)
   {
      return inputString.ToUpper();
   }
}

匿名委托

 


using System;

public class Anonymous
{
   public static void Main()
   {
      Func<string, string> convert = delegate(string s)
         { return s.ToUpper();}; 

      string name = "Dakota";
      Console.WriteLine(convert(name));   
   }
}

 

分配委托、匿名委托、委托

标签:style   ar   color   os   sp   on   div   bs   ad   

原文地址:http://www.cnblogs.com/LMzj/p/4116550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!