Replaces types with built-in types.
This commit is contained in:
parent
fee83ce560
commit
22ab83ea9e
98 changed files with 248 additions and 248 deletions
|
|
@ -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 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue