Exemple #1
0
 public override bool Equals(object?obj)
 {
     if (obj is WriteObject wo)
     {
         return(RowKey.SequenceEqual(wo.RowKey));
     }
     return(false);
 }
Exemple #2
0
 public bool Equals(WriteObject other)
 {
     return(RowKey.SequenceEqual(other.RowKey));
 }