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

ArrayListHelper

时间:2015-04-20 16:27:50      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:

 1  public static class ArrayListHelper
 2     {
 3         /// <summary>
 4         /// determine whether the array list contain the sepcific string
 5         /// </summary>
 6         /// <param name="source"></param>
 7         /// <param name="obj"></param>
 8         /// <returns></returns>
 9         public static bool ContainsRegardlessCase(this ArrayList source, string obj)
10         {
11             for (int i = 0; i < source.Count; i++)
12             {
13                 string str = source[i].ToString();
14                 if (str.ToUpper() == obj.ToUpper())
15                 {
16                     return true;
17                 }
18             }
19             return false;
20         }
21     }

 

ArrayListHelper

标签:

原文地址:http://www.cnblogs.com/JustYong/p/4441797.html

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