System.Linq.Expressions.Error.TryNotSupportedForMethodsWithRefArgs C# (CSharp) Метод

TryNotSupportedForMethodsWithRefArgs() статический приватный Метод

NotSupportedException with message like "TryExpression is not supported as an argument to method '{0}' because it has an argument with by-ref type. Construct the tree so the TryExpression is not nested inside of this expression."
static private TryNotSupportedForMethodsWithRefArgs ( object p0 ) : Exception
p0 object
Результат Exception
        internal static Exception TryNotSupportedForMethodsWithRefArgs(object p0)
        {
            return new NotSupportedException(Strings.TryNotSupportedForMethodsWithRefArgs(p0));
        }
        /// <summary>
Error