与MethodBase.GetCurrentMethod等效的可移植类库

时间:2011-12-28 15:27:13

标签: .net system.reflection portable-class-library

那里的Portable Class Library相当于MethodBase.GetCurrentMethod?

我是PCL的新手。我只是在研究是否可以使用PCL来保存一些肯定会在Silverlight上使用的客户端代码,并且可以在其他地方使用。扫描完源代码后,我可以看到很多对MethodBase.GetCurrentMethod的调用,这些调用似乎不存在于PCL中。

**编辑**

我已经将这个样本从有问题的库中删除了。 IsNullOrEmpty()使用了String.IsNullOrWhiteSpace(String),它似乎不可用,因此该位是一个软糖。

using System;
using System.Linq;
using System.Reflection;
using System.Linq.Expressions;

namespace LinqToLdap.PCL
{
    public static class QueryableExtensions
    {
        internal static bool IsNullOrEmpty(this String str)
        {
            return string.IsNullOrEmpty(str);
        }

        public static IQueryable<TSource> FilterWith<TSource>(this IQueryable<TSource> source, string filter)
        {
            if (source == null) throw new ArgumentNullException("source");

            if (filter.IsNullOrEmpty()) throw new Exception("Filters cannot be null, empty, or white-space.");

            if (!filter.StartsWith("("))
            {
                filter = "(" + filter + ")";
            }

            return source.Provider.CreateQuery<TSource>(
                Expression.Call(
                    null,
                    ((MethodInfo)MethodBase.GetCurrentMethod())
                        .MakeGenericMethod(new[] { typeof(TSource) }),
                    new[] { source.Expression, Expression.Constant(filter) }
                    )
                );
        }
    }
}

1 个答案:

答案 0 :(得分:1)

(我自己是'微软的便携式图书馆项目'

我们不会在PCL中公开它,因为Windows 8 .NET for Metro应用程序不支持它。你对这种方法的用法是什么?