Parameter.Equals Method

Definition

Overloads

Equals(Parameter)
Equals(Parameter, Parameter)

Determines wether two Parameter objects have the same value.

Equals(Parameter)

Indicates whether the current object is equal to another object of the same type.

public bool Equals (Microsoft.ML.SearchSpace.Parameter other);
override this.Equals : Microsoft.ML.SearchSpace.Parameter -> bool
Public Function Equals (other As Parameter) As Boolean

Parameters

other
Parameter

Returns

Implements

Applies to

Equals(Parameter, Parameter)

Determines wether two Parameter objects have the same value.

public bool Equals (Microsoft.ML.SearchSpace.Parameter x, Microsoft.ML.SearchSpace.Parameter y);
override this.Equals : Microsoft.ML.SearchSpace.Parameter * Microsoft.ML.SearchSpace.Parameter -> bool
Public Function Equals (x As Parameter, y As Parameter) As Boolean

Parameters

x
Parameter

The first parameter to compare.

y
Parameter

The second parameter to compare.

Returns

true if the value of x is the same as the value of y; otherwise, false.

Implements

Applies to