ZXing.OneD.RSS.FinderPattern.Equals C# (CSharp) Метод

Equals() публичный Метод

Determines whether the specified System.Object is equal to this instance.
public Equals ( Object o ) : bool
o Object The to compare with this instance.
Результат bool
      override public bool Equals(Object o)
      {
         if (!(o is FinderPattern))
         {
            return false;
         }
         FinderPattern that = (FinderPattern)o;
         return Value == that.Value;
      }