System.Linq.Expressions.Strings.KeyDoesNotExistInExpando C# (CSharp) Method

KeyDoesNotExistInExpando() static private method

A string like "The specified key '{0}' does not exist in the ExpandoObject."
static private KeyDoesNotExistInExpando ( object p0 ) : string
p0 object
return string
        internal static string KeyDoesNotExistInExpando(object p0) => SR.Format(SR.KeyDoesNotExistInExpando, p0);

Usage Example

 internal static Exception KeyDoesNotExistInExpando(object p0)
 {
     return(new KeyNotFoundException(Strings.KeyDoesNotExistInExpando(p0)));
 }
Strings