Treefrog.Framework.Imaging.Size.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : Size
return Size
        public static Size operator +(Size a, Size b)
        {
            return new Size(a.Width + b.Width, a.Height + b.Height);
        }

Same methods

Size::operator ( ) : bool