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

匿名方法的一些使用方法备忘

时间:2017-05-25 13:33:56      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:lis   put   shu   ring   system   bis   using   alt   sys   

技术分享
using System;
using System.Collections.Generic;
using System.Text;
namespace MyDelegate
{
class Program
{
static void Main(string[] args)
{
List<string> m_liName=new List<string>();
m_liName.Add("sadi");
m_liName.Add("pothik");
m_liName.Add("shiman");
m_liName.Add("shuvro");
m_liName.Add("arif");

//**************Find a single data
string sName = m_liName.Find(delegate(string s)
{ return s.Equals("sadi"); });

//**************Find multiple data
List<string> liName1 = m_liName.FindAll(delegate(string s)
{ return s.Equals("sh"); });

//*************If contains the data**********
bool bIsSuccess = m_liName.Contains("sadi");
// output: true
}
}
}
技术分享

匿名方法的一些使用方法备忘

标签:lis   put   shu   ring   system   bis   using   alt   sys   

原文地址:http://www.cnblogs.com/yangmingyu/p/6903052.html

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