Equals() public method

Returns a indicating whether this instance is equal to the specified NetServ.Net.Json.IJsonNumber.
public Equals ( IJsonNumber other ) : bool
other IJsonNumber The value to compare.
return bool
Beispiel #1
0
 /// <summary>
 /// Inequality operator.
 /// </summary>
 /// <param name="a">The first JsonNumber.</param>
 /// <param name="b">The second JsonNumber.</param>
 /// <returns>True if the JsonNumbers are not equal, otherwise; false.</returns>
 public static bool operator !=(JsonNumber a, JsonNumber b)
 {
     return(!JsonNumber.Equals(a, b));
 }