Boo.Lang.Compiler.Steps.EmitAssembly.IsBoolOrInt C# (CSharp) Метод

IsBoolOrInt() приватный Метод

private IsBoolOrInt ( IType type ) : bool
type IType
Результат bool
        bool IsBoolOrInt(IType type)
        {
            return TypeSystemServices.BoolType == type ||
                TypeSystemServices.IntType == type;
        }
EmitAssembly