System.Dynamic.Utils.Strings.InvalidObjectType C# (CSharp) Method

InvalidObjectType() static private method

A string like "The value '{0}' is not of type '{1}' and cannot be used in this collection."
static private InvalidObjectType ( object p0, object p1 ) : string
p0 object
p1 object
return string
        internal static string InvalidObjectType(object p0, object p1) => SR.Format(SR.InvalidObjectType, p0, p1);