10 lines
189 B
C#
10 lines
189 B
C#
1 month ago
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
|
||
|
public static class Tools
|
||
|
{
|
||
|
public static string GetCurrentPath()
|
||
|
{
|
||
|
return System.Environment.CurrentDirectory;
|
||
|
}
|
||
|
}
|