相当于MethodBase.GetCurrentMethod的可移植类库

那里的便携式类库相当于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) }
                    )
                );
        }
    }
}

(我在Microsoft拥有Portable Library项目)

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

链接地址: http://www.djcxy.com/p/68849.html

上一篇: Portable Class Library equivalent to MethodBase.GetCurrentMethod

下一篇: Where is user.config loaded from during Visual Studio debugging