Share via


FunctionChoice.Inequality(FunctionChoice, FunctionChoice) Operator

Definition

Returns a value indicating whether two FunctionChoice instances are not equivalent, as determined by a case-insensitive comparison of their labels.

public static bool operator != (Microsoft.SemanticKernel.FunctionChoice left, Microsoft.SemanticKernel.FunctionChoice right);
static member op_Inequality : Microsoft.SemanticKernel.FunctionChoice * Microsoft.SemanticKernel.FunctionChoice -> bool
Public Shared Operator != (left As FunctionChoice, right As FunctionChoice) As Boolean

Parameters

left
FunctionChoice

the first FunctionChoice instance to compare

right
FunctionChoice

the second FunctionChoice instance to compare

Returns

false if left and right are both null or have equivalent labels; true otherwise

Applies to