GSF.Historian.Files.StateRecord.Equals C# (CSharp) Method

Equals() public method

Determines whether the current StateRecord object is equal to obj.
public Equals ( object obj ) : bool
obj object Object against which the current object is to be compared for equality.
return bool
        public override bool Equals(object obj)
        {
            return (CompareTo(obj) == 0);
        }