Error comes up for the method requiring await operators but where do I put them and what is an await operator and async and Task? :)
 public async void OnLocationChanged(Location location)
    {
        _currentLocation = location;
        if (_currentLocation == null)
        {
            _locationText.Text = "Unable to determine your location. Try again in a short while.";
        }
        else
        {
            _locationText.Text =  string.Format("{0:f6},{1:f6}", _currentLocation.Latitude, _currentLocation.Longitude);
            as
        }
    }
I want specific help in the example above :)
 
    