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

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

A string like "The specified key '{0}' does not exist in the ExpandoObject."
static private KeyDoesNotExistInExpando ( object p0 ) : string
p0 object
Результат string
        internal static string KeyDoesNotExistInExpando(object p0) => SR.Format(SR.KeyDoesNotExistInExpando, p0);

Usage Example

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