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

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

NotSupportedException with message like "Dynamic expressions are not supported by CompileToMethod. Instead, create an expression tree that uses System.Runtime.CompilerServices.CallSite."
static private CannotCompileDynamic ( ) : Exception
Результат System.Exception
        internal static Exception CannotCompileDynamic()
        {
            return new NotSupportedException(Strings.CannotCompileDynamic);
        }
        /// <summary>
Error