I have a code as shown below and co ordinates are in meter and need to convert to WGS system
private async void ShowBalloonCallout(Geometry geometry)
{
if (geometry is Polyline polyline)
{
var startPoint = polyline.Points.FirstOrDefault();
var endPoint = polyline.Points.LastOrDefault();
}
}