Evbpc.Framework.Drawing.Size.operator C# (CSharp) Method

operator() public static method

Determines if two Size structures are equal.
public static operator ( ) : bool
return bool
        public static bool operator ==(Size sz1, Size sz2) => sz1.Width == sz2.Width && sz1.Height == sz2.Height;
        

Same methods

Size::operator ( ) : Size