XAML-Map-Control/MapControl/Shared/FilePath.cs
2025-08-19 19:43:02 +02:00

17 lines
332 B
C#

using System.IO;
namespace MapControl
{
public static class FilePath
{
public static string GetFullPath(string path)
{
#if NET6_0_OR_GREATER
return Path.GetFullPath(path, System.AppDomain.CurrentDomain.BaseDirectory);
#else
return Path.GetFullPath(path);
#endif
}
}
}