System.Linq.Expressions.Strings.UndefinedVariable C# (CSharp) Метод

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

A string like "variable '{0}' of type '{1}' referenced from scope '{2}', but it is not defined"
static private UndefinedVariable ( object p0, object p1, object p2 ) : string
p0 object
p1 object
p2 object
Результат string
        internal static string UndefinedVariable(object p0, object p1, object p2) => SR.Format(SR.UndefinedVariable, p0, p1, p2);

Usage Example

Пример #1
0
 internal static Exception UndefinedVariable(object p0, object p1, object p2)
 {
     return(new InvalidOperationException(Strings.UndefinedVariable(p0, p1, p2)));
 }
Strings