MissionPlanner.Utilities.Locationwp.Set C# (CSharp) Метод

Set() публичный Метод

public Set ( double lat, double lng, double alt, ushort id ) : Locationwp
lat double
lng double
alt double
id ushort
Результат Locationwp
        public Locationwp Set(double lat, double lng, double alt, ushort id)
        {
            this.lat = lat;
            this.lng = lng;
            this.alt = (float)alt;
            this.id = id;

            return this;
        }
Locationwp