Parameter.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
The first parameter to compare.
The second parameter to compare.
Returns
true if the value of x
is the same as the value of y
; otherwise, false.