System.Dynamic.Utils.DelegateHelpers.ConvertToBoxableType C# (CSharp) Method

ConvertToBoxableType() private static method

private static ConvertToBoxableType ( Type t ) : Type
t Type
return Type
        private static Type ConvertToBoxableType(Type t)
        {
            return (t.IsPointer) ? typeof(IntPtr) : t;
        }