Some comments

This commit is contained in:
ClemensFischer 2024-04-11 15:59:07 +02:00
parent e642846e7d
commit fd2f09a078
5 changed files with 17 additions and 4 deletions

View file

@ -52,6 +52,10 @@ namespace MapControl
Add(new Location(latitude, longitude));
}
/// <summary>
/// Creates a LocationCollection instance from a string containing a sequence
/// of Location strings that are separated by a spaces or semicolons.
/// </summary>
public static LocationCollection Parse(string locations)
{
if (string.IsNullOrEmpty(locations))