Open sandboxFocus

Method IntroduceBinaryOperator

IntroduceBinaryOperator(IAdviser<INamedType>, string, IType, IType, IType, OperatorKind, OverrideStrategy, Action<IMethodBuilder>?, object?, object?)

Introduces a binary operator to the target type, or overrides the implementation of an existing one. Use the With<TNewDeclaration>(TNewDeclaration) method to apply the advice to a different type than the current one.

Declaration
public static IIntroductionAdviceResult<IMethod> IntroduceBinaryOperator(this IAdviser<INamedType> adviser, string template, IType leftType, IType rightType, IType resultType, OperatorKind kind, OverrideStrategy whenExists = OverrideStrategy.Default, Action<IMethodBuilder>? buildOperator = null, object? args = null, object? tags = null)
Parameters
Type Name Description
IAdviser<INamedType> adviser

An adviser for a named type.

string template

Name of the method of the aspect class that will be used as a template for the introduced operator. This method must be annotated with TemplateAttribute.

IType leftType

The type of the left operand of the operator.

IType rightType

The type of the right operand of the operator.

IType resultType

The return type of the operator.

OperatorKind kind

The kind of operator to introduce.

OverrideStrategy whenExists

Determines the implementation strategy when an operator of the same kind and signature is already declared in the target type. The default strategy is to fail with a compile-time error.

Action<IMethodBuilder> buildOperator

An optional delegate to customize the introduced operator via IMethodBuilder.

object args

An optional object (typically of anonymous type) whose properties map to template method parameters or type parameters. See Sharing state with adviceSharing state with advice for details.

object tags

An optional object (typically of anonymous type) passed to the template and accessible via meta.Tags. See Sharing state with adviceSharing state with advice for details.

Returns
Type Description
IIntroductionAdviceResult<IMethod>

An IIntroductionAdviceResult<T> exposing the introduced or overriding IMethod.

See Also