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

◆ GetTypeHandle()

static RuntimeTypeHandle System.Type.GetTypeHandle ( object o)
inlinestaticinherited

Definition at line 891 of file Type.cs.

892 {
893 if (o == null)
894 {
895 throw new ArgumentNullException(null, SR.Arg_InvalidHandle);
896 }
897 Type type = o.GetType();
898 return type.TypeHandle;
899 }

References System.SR.Arg_InvalidHandle, and System.type.