ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver.PointerArithmeticOperator C# (CSharp) Method

PointerArithmeticOperator() private method

private PointerArithmeticOperator ( IType resultType, IType inputType1, KnownTypeCode inputType2 ) : CSharpOperators.BinaryOperatorMethod
resultType IType
inputType1 IType
inputType2 KnownTypeCode
return CSharpOperators.BinaryOperatorMethod
		CSharpOperators.BinaryOperatorMethod PointerArithmeticOperator(IType resultType, IType inputType1, KnownTypeCode inputType2)
		{
			return PointerArithmeticOperator(resultType, inputType1, compilation.FindType(inputType2));
		}
		

Same methods

CSharpResolver::PointerArithmeticOperator ( IType resultType, IType inputType1, IType inputType2 ) : CSharpOperators.BinaryOperatorMethod
CSharpResolver::PointerArithmeticOperator ( IType resultType, KnownTypeCode inputType1, IType inputType2 ) : CSharpOperators.BinaryOperatorMethod
CSharpResolver