System.Xml.Serialization.Configuration.SchemaImporterExtensionElement.TypeAndName.TypeAndName C# (CSharp) Method

TypeAndName() public method

public TypeAndName ( string name ) : System
name string
return System
            public TypeAndName(string name)
            {
                this.type = Type.GetType(name, true, true);
                this.name = name;
            }

Same methods

SchemaImporterExtensionElement.TypeAndName::TypeAndName ( Type type ) : System
SchemaImporterExtensionElement.TypeAndName