Fhnw.Ecnf.RoutePlanner.RoutePlannerLib.WayPoint.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

public static operator ( ) : WayPoint
리턴 WayPoint
        public static WayPoint operator +(WayPoint wpl, WayPoint wpr)
        {
            return new WayPoint(wpl.Name,wpl.Latitude+wpr.Latitude,wpl.Longitude+wpr.Longitude);
        }