System.Data.ExpressionNode.IsUnsigned C# (CSharp) 메소드

IsUnsigned() 정적인 개인적인 메소드

static private IsUnsigned ( StorageType type ) : bool
type StorageType
리턴 bool
        internal static bool IsUnsigned(StorageType type)
        {
            return (type == StorageType.UInt16 ||
                   type == StorageType.UInt32 ||
                   type == StorageType.UInt64 ||
                   type == StorageType.Byte);
        }