码迷,mamicode.com
首页 > Windows程序 > 详细

C#基础---扩展方法的应用

时间:2015-01-31 00:25:25      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

    最近对扩展方法比较感兴趣,就看了看资料,记录一下扩展方法的几种方法.

   一. 扩展方法的基本使用:  

    Note: 1. 扩展方法必须在静态类中, 2 扩展方法必须声明静态方法,3 扩展方法里面不能调用其他自定义方法。

public static int TryToInt(this string intStr)
        {
            int number = 0;
            int.TryParse(intStr, out number);
            return number;
        }

public static IEnumerable<string> StartsWith(this IEnumerable<string> ie, string startStr)
        {
            IEnumerable<string> returnIe = null;
            if (ie != null)
            {
                returnIe = ie.Where(x => x.StartsWith(startStr));
            }

            return returnIe;
        }

   二. 扩展方法之泛型: 上面都是对扩展方法的类型写死了,扩展方法一样支持泛型:

public static bool IsBetween<T>(this T value, T low, T high) where T : IComparable<T>
        {
            return value.CompareTo(low) >= 0 && value.CompareTo(high) < 0;
        }

  三. 泛型方法之委托: 泛型方法可以支持委托,跟方便我们对数据的操作,下面来模拟集合的foreach方法.

public static void Each<T>(this IEnumerable<T> items, Action<T> action)
   {
         foreach (T item in items)
         {
              action(item);
         }
    }

 

      

    

C#基础---扩展方法的应用

标签:

原文地址:http://www.cnblogs.com/FourLeafCloverZc/p/4263417.html

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