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

operator() public static method

Adds two Size structures together and returns the result.
public static operator ( ) : Size
return Size
        public static Size operator +(Size sz1, Size sz2) => new Size(sz1.Width + sz2.Width, sz1.Height + sz2.Height);

Same methods

Size::operator ( ) : bool