Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetType() [5/8]

static RuntimeType System.RuntimeType.GetType ( string typeName,
bool throwOnError,
bool ignoreCase,
ref StackCrawlMark stackMark )
inlinestaticpackage

Definition at line 1664 of file RuntimeType.cs.

1665 {
1666 if (typeName == null)
1667 {
1668 throw new ArgumentNullException("typeName");
1669 }
1670 return RuntimeTypeHandle.GetTypeByName(typeName, throwOnError, ignoreCase, ref stackMark);
1671 }

References System.RuntimeTypeHandle.GetTypeByName().

Referenced by System.Type.GetType(), System.Type.GetType(), System.Type.GetType(), and System.TypeNameParser.ResolveType().