HexapiBackground.GpsExtensions.SaveWaypoint C# (CSharp) Method

SaveWaypoint() static private method

static private SaveWaypoint ( this latLon ) : System.Threading.Tasks.Task
latLon this
return System.Threading.Tasks.Task
        internal static async Task SaveWaypoint(this LatLon latLon)
        {
            Debug.WriteLine($"Saving to file : {latLon}");

            await FileExtensions.SaveStringToFile("waypoints.txt", latLon.ToString());
        }