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

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

A string like "Extension node must override the property {0}."
static private ExtensionNodeMustOverrideProperty ( object p0 ) : string
p0 object
Результат string
        internal static string ExtensionNodeMustOverrideProperty(object p0) => SR.Format(SR.ExtensionNodeMustOverrideProperty, p0);

Usage Example

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