public bool Equals(ArgumentMatchInfo other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other.Index == Index && Equals(other._argument, _argument) && Equals(other._specification, _specification));
 }
 public bool Equals(ArgumentMatchInfo other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other.Index == Index && Equals(other._argument, _argument) && Equals(other._specification, _specification);
 }