Ejemplo n.º 1
0
 // public static methods
 /// <summary>
 /// Determines whether two specified ReplicaSetTagSet objects have the same value.
 /// </summary>
 /// <param name="lhs">The first value to compare, or null.</param>
 /// <param name="rhs">The second value to compare, or null.</param>
 /// <returns>True if the value of lhs is the same as the value of rhs; otherwise, false.</returns>
 public static bool Equals(ReplicaSetTagSet lhs, ReplicaSetTagSet rhs)
 {
     if ((object)lhs == null)
     {
         return((object)rhs == null);
     }
     return(lhs.Equals(rhs));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Determines whether two specified ReplicaSetTagSet objects have the same value.
 /// </summary>
 /// <param name="lhs">The first value to compare, or null.</param>
 /// <param name="rhs">The second value to compare, or null.</param>
 /// <returns>True if the value of lhs is the same as the value of rhs; otherwise, false.</returns>
 public static bool operator ==(ReplicaSetTagSet lhs, ReplicaSetTagSet rhs)
 {
     return(ReplicaSetTagSet.Equals(lhs, rhs));
 }