6 lines
155 B
C#
6 lines
155 B
C#
|
namespace InnovEnergy.Lib.SysTools.Edges;
|
||
|
|
||
|
public static class StringToSysPath
|
||
|
{
|
||
|
public static SysPath ToPath(this String path) => new SysPath(path);
|
||
|
}
|