Example #1
0
 /// <summary>
 /// Returns a value indicating whether this instance is equal to a specified <see cref="mp_limb_t">mp_limb_t</see> value.
 /// </summary>
 /// <param name="other">A <see cref="mp_limb_t">mp_limb_t</see> value to compare to this instance.</param>
 /// <returns><c>True</c> if <paramref name="other"/> has the same value as this instance; otherwise, <c>False</c>.</returns>
 public bool Equals(mp_limb_t other)
 {
     return(Value == other.Value);
 }