Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsFloatingPointNumber C# (CSharp) 메소드

IsFloatingPointNumber() 공개 메소드

public IsFloatingPointNumber ( IType type ) : bool
type IType
리턴 bool
        public bool IsFloatingPointNumber(IType type)
        {
            return (type == DoubleType || type == SingleType);
        }
TypeSystemServices