扩展方法必须在非generics静态类中定义

我收到错误:

扩展方法必须在非generics静态类中定义

在线上:

public class LinqHelper 

这是基于Mark Gavells代码的助手类。 我真的很困惑这个错误是什么意思,因为我确信当我在星期五离开时它工作的很好!

 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Linq.Expressions; using System.Reflection; /// <summary> /// Helper methods for link /// </summary> public class LinqHelper { public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> source, string property) { return ApplyOrder<T>(source, property, "OrderBy"); } public static IOrderedQueryable<T> OrderByDescending<T>(this IQueryable<T> source, string property) { return ApplyOrder<T>(source, property, "OrderByDescending"); } public static IOrderedQueryable<T> ThenBy<T>(this IOrderedQueryable<T> source, string property) { return ApplyOrder<T>(source, property, "ThenBy"); } public static IOrderedQueryable<T> ThenByDescending<T>(this IOrderedQueryable<T> source, string property) { return ApplyOrder<T>(source, property, "ThenByDescending"); } static IOrderedQueryable<T> ApplyOrder<T>(IQueryable<T> source, string property, string methodName) { string[] props = property.Split('.'); Type type = typeof(T); ParameterExpression arg = Expression.Parameter(type, "x"); Expression expr = arg; foreach (string prop in props) { // use reflection (not ComponentModel) to mirror LINQ PropertyInfo pi = type.GetProperty(prop); expr = Expression.Property(expr, pi); type = pi.PropertyType; } Type delegateType = typeof(Func<,>).MakeGenericType(typeof(T), type); LambdaExpression lambda = Expression.Lambda(delegateType, expr, arg); object result = typeof(Queryable).GetMethods().Single( method => method.Name == methodName && method.IsGenericMethodDefinition && method.GetGenericArguments().Length == 2 && method.GetParameters().Length == 2) .MakeGenericMethod(typeof(T), type) .Invoke(null, new object[] { source, lambda }); return (IOrderedQueryable<T>)result; } } 

更改

 public class LinqHelper 

 public static class LinqHelper 

创build扩展方法时需要考虑以下几点:

  1. 定义扩展方法的类必须non-genericstaticnon-nested
  2. 每个扩展方法都必须是一个static方法
  3. 扩展方法的第一个参数应该使用this关键字。

将关键字static添加到类声明中:

 // this is a non-generic static class public static class LinqHelper { } 

将其更改为

 public static class LinqHelper 

尝试改变

 public class LinqHelper 

  public static class LinqHelper 

对于那些遇到像Nathan这样的bug的人来说,

即时编译器似乎有这个扩展方法错误的问题…添加static也没有帮助我。

我想知道是什么原因造成的错误?

但是,解决方法是编写一个新的扩展类(不嵌套),即使在同一个文件中,然后重新构build。

认为这个线程得到了足够的意见,值得传递(有限)的解决scheme,我发现。 大多数人可能尝试添加“静态”谷歌之前的解决scheme! 我没有看到这个解决方法在其他地方修复。

扩展方法应该在一个静态类中。 所以请将您的扩展方法添加到静态类中。

所以例如它应该是这样的

 public static class myclass { public static Byte[] ToByteArray(this Stream stream) { Int32 length = stream.Length > Int32.MaxValue ? Int32.MaxValue : Convert.ToInt32(stream.Length); Byte[] buffer = new Byte[length]; stream.Read(buffer, 0, length); return buffer; } }