Boo.Lang.Compiler.Steps.EmitAssembly.IsPtr C# (CSharp) Method

IsPtr() private method

private IsPtr ( IType type ) : bool
type IType
return bool
        bool IsPtr(IType type)
        {
            return (type == TypeSystemServices.IntPtrType)
                || (type == TypeSystemServices.UIntPtrType);
        }
EmitAssembly