Exemplo n.º 1
0
 /// <summary>
 /// Equates two <see cref="SingleEventTypeEventStream" /> instances
 /// </summary>
 /// <param name="first">The first <see cref="SingleEventTypeEventStream" /> instance</param>
 /// <param name="second">The second <see cref="SingleEventTypeEventStream" /> instance</param>
 /// <returns>true if equal, otherwise false</returns>
 public static bool Equals(SingleEventTypeEventStream first, SingleEventTypeEventStream second)
 {
     return(_comparer.Equals(first, second));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Equates this instance of <see cref="SingleEventTypeEventStream" /> to another
 /// </summary>
 /// <param name="other"> The other <see cref="SingleEventTypeEventStream" /> to equate with</param>
 /// <returns>true if equal, false otherwise</returns>
 public bool Equals(SingleEventTypeEventStream other)
 {
     return(Equals(this, other));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Equates two <see cref="SingleEventTypeEventStream" /> instances.
 /// </summary>
 /// <param name="left">The left <see cref="SingleEventTypeEventStream" /> instance.</param>
 /// <param name="right">The right <see cref="SingleEventTypeEventStream" /> instance.</param>
 /// <returns>true if equal, otherwise false.</returns>
 public static bool Equals(SingleEventTypeEventStream left, SingleEventTypeEventStream right)
 {
     return(_comparer.Equals(left, right));
 }