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

C#扩展方法(Extend Method)

时间:2017-11-11 18:58:36      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:method   func   eval   test   res   for   red   mpi   future   

C#扩展方法(Extend Method)


在不更改原来类的基础上,为类添加方法。
1,扩展方法必须写静态类中
2,扩展方法必须是静态方法,虽然是静态方法,但是这个扩张方法是为对象扩展的,只能由对象调用。
public static class 类名
{
  public static 返回值 方法名(this 要扩展的类型 对象名[,参数列表])
  {

  }
}


static class Extend
{
public static TSource Test123<TSource>(this IEnumerable<TSource> source, Func<TSource, bool> predicate)
{

foreach (TSource item in source)
{
if (predicate(item))
{
return (item);
}
}
throw new Exception("未找到!");
}
}


List<int> ints =new List<int> { 1,2,3,4,5,6 };

int nRet = ints.Test123(o => o > 5);//nRet=6

 

附:NHibernate的扩展类

using NHibernate;
using NHibernate.Type;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;

namespace NHibernate.Linq
{
public static class LinqExtensionMethods
{
public static IQueryable<T> Cacheable<T>(this IQueryable<T> query);
public static IQueryable<T> CacheMode<T>(this IQueryable<T> query, CacheMode cacheMode);
public static IQueryable<T> CacheRegion<T>(this IQueryable<T> query, string region);
public static T MappedAs<T>(this T parameter, IType type);
public static IQueryable<T> Query<T>(this ISession session);
public static IQueryable<T> Query<T>(this IStatelessSession session);
public static IQueryable<T> Query<T>(this ISession session, string entityName);
public static IQueryable<T> Query<T>(this IStatelessSession session, string entityName);
public static IQueryable<T> Timeout<T>(this IQueryable<T> query, int timeout);
public static IEnumerable<T> ToFuture<T>(this IQueryable<T> query);
public static IFutureValue<T> ToFutureValue<T>(this IQueryable<T> query);
public static IFutureValue<TResult> ToFutureValue<T, TResult>(this IQueryable<T> query, Expression<Func<IQueryable<T>, TResult>> selector);
}
}

C#扩展方法(Extend Method)

标签:method   func   eval   test   res   for   red   mpi   future   

原文地址:http://www.cnblogs.com/SafeSimple/p/7819555.html

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