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

扩展方法

时间:2014-05-17 18:25:24      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   java   

bubuko.com,布布扣
 1 namespace ExtensionMethod
 2 {
 3     class Program
 4     {
 5         static void Main(string[] args)
 6         {
 7             //要求很简单,判断字符串是否长度大于三并且包含a
 8             string str = "1bcb";
 9             if (str.CheckStr())
10             {
11                 Console.WriteLine("字符串正确");
12             }
13             else {
14                 Console.WriteLine("字符串有误");
15             }
16             Console.Read();
17         }
18     }
19     static class HelpString {
20        /// <summary>
21        /// 验证字符串参数长度是否大于3且含有“a”
22        /// </summary>
23        /// <param name="str"></param>
24        /// <returns></returns>
25         public static bool CheckStr(this string str)
26         {
27             if (str.Length <= 3 || str.IndexOf("a") == -1)
28             {
29                 return false;
30             }
31             return true;
32         }
33     }
34 }
bubuko.com,布布扣


关键子就是this啦 . . .

扩展方法,布布扣,bubuko.com

扩展方法

标签:style   blog   class   code   c   java   

原文地址:http://www.cnblogs.com/hualongbei/p/3733514.html

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