Override ToString()

This commit is contained in:
C9Glax 2023-02-08 18:08:49 +01:00
parent c182818aff
commit 9444e2ac8e

View File

@ -44,4 +44,9 @@ public class Coordinates
ulong lonHash = Convert.ToUInt64((lonRegion + 180) * decimalCoordsSave);
return latHash * offset + lonHash;
}
public override string ToString()
{
return string.Format("COORDINATES Lat: {0} Lon: {1}", this.latitude, this.longitude);
}
}