LiveCharts.Dtos.CorePoint.operator C# (CSharp) Method

operator() public static method

Sums every property between 2 given points
public static operator ( ) : CorePoint
return CorePoint
        public static CorePoint operator +(CorePoint p1, CorePoint p2)
        {
            return new CorePoint(p1.X + p2.X, p1.Y + p2.Y);
        }