Unity.IL2CPP.StackTypeConverter.StackTypeForBinaryOperation C# (CSharp) Method

StackTypeForBinaryOperation() public static method

public static StackTypeForBinaryOperation ( TypeReference type ) : TypeReference
type Mono.Cecil.TypeReference
return Mono.Cecil.TypeReference
        public static TypeReference StackTypeForBinaryOperation(TypeReference type)
        {
            TypeReference reference = StackTypeFor(type);
            if (reference is ByReferenceType)
            {
                return TypeProvider.NativeIntTypeReference;
            }
            return reference;
        }
    }