VixenModules.App.Curves.Curve.Equals C# (CSharp) Метод

Equals() защищенный Метод

protected Equals ( Curve other ) : bool
other Curve
Результат bool
        protected bool Equals(Curve other)
        {
            return Equals(_points, other._points) && Equals(_library, other._library) && string.Equals(_libraryReferenceName, other._libraryReferenceName) && Equals(LibraryReferencedCurve, other.LibraryReferencedCurve) && IsCurrentLibraryCurve == other.IsCurrentLibraryCurve;
        }

Same methods

Curve::Equals ( object obj ) : bool