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

IsPointerCompatible() 공개 메소드

public IsPointerCompatible ( IType type ) : bool
type IType
리턴 bool
        public bool IsPointerCompatible(IType type)
        {
            return IsPrimitiveNumber(type) || (type.IsValueType && 0 != SizeOf(type));
        }
TypeSystemServices