mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-05-07 13:37:47 +00:00
File scoped namespaces
This commit is contained in:
parent
c14377f976
commit
65aba44af6
152 changed files with 11962 additions and 12115 deletions
|
|
@ -1,16 +1,15 @@
|
|||
using System.IO;
|
||||
|
||||
namespace MapControl
|
||||
namespace MapControl;
|
||||
|
||||
public static class FilePath
|
||||
{
|
||||
public static class FilePath
|
||||
public static string GetFullPath(string path)
|
||||
{
|
||||
public static string GetFullPath(string path)
|
||||
{
|
||||
#if NETFRAMEWORK
|
||||
return Path.GetFullPath(path);
|
||||
return Path.GetFullPath(path);
|
||||
#else
|
||||
return Path.GetFullPath(path, System.AppDomain.CurrentDomain.BaseDirectory);
|
||||
return Path.GetFullPath(path, System.AppDomain.CurrentDomain.BaseDirectory);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue