Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsPointerCompatible C# (CSharp) Method

IsPointerCompatible() public method

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