Evbpc.Framework.Drawing.Size.Equals C# (CSharp) Méthode

Equals() public méthode

Determines if the current Size is equal to the specified object.
public Equals ( object obj ) : bool
obj object The object to compare to the current .
Résultat bool
        public override bool Equals(object obj) => obj is Size && (Size)obj == this;