Bevisuali.UX.ExtWPF.Add C# (CSharp) Method

Add() public static method

public static Add ( this a, Point b ) : Point
a this
b Point
return Point
        public static Point Add(this Point a, Point b)
        {
            return new Point(a.X + b.X, a.Y + b.Y);
        }