Replaces types with built-in types.

This commit is contained in:
Kamron Batman 2018-09-14 13:22:16 -07:00
parent fee83ce560
commit 22ab83ea9e
98 changed files with 248 additions and 248 deletions

View file

@ -686,10 +686,10 @@ namespace Server.Commands
}
private static Type[] m_SignedNumerics = {
typeof( Int64 ),
typeof( Int32 ),
typeof( Int16 ),
typeof( SByte )
typeof( long ),
typeof( int ),
typeof( short ),
typeof( sbyte )
};
public static bool IsSignedNumeric( Type type )
@ -702,10 +702,10 @@ namespace Server.Commands
}
private static Type[] m_UnsignedNumerics = {
typeof( UInt64 ),
typeof( UInt32 ),
typeof( UInt16 ),
typeof( Byte )
typeof( ulong ),
typeof( uint ),
typeof( ushort ),
typeof( byte )
};
public static bool IsUnsignedNumeric( Type type )