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

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

A string like "Type '{0}' does not have a default constructor"
static private TypeMissingDefaultConstructor ( object p0 ) : string
p0 object
Результат string
        internal static string TypeMissingDefaultConstructor(object p0) => SR.Format(SR.TypeMissingDefaultConstructor, p0);

Usage Example

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