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

UnhandledBinary() static private method

A string like "Unhandled binary: {0}"
static private UnhandledBinary ( object p0 ) : string
p0 object
return string
        internal static string UnhandledBinary(object p0) => SR.Format(SR.UnhandledBinary, p0);

Usage Example

 internal static Exception UnhandledBinary(object p0)
 {
     return(new ArgumentException(Strings.UnhandledBinary(p0)));
 }
Strings