mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
281 B
C#
14 lines
281 B
C#
namespace Wabbajack.Paths;
|
|
|
|
public static class StringExtensions
|
|
{
|
|
public static RelativePath ToRelativePath(this string s)
|
|
{
|
|
return (RelativePath) s;
|
|
}
|
|
|
|
public static AbsolutePath ToAbsolutePath(this string s)
|
|
{
|
|
return (AbsolutePath) s;
|
|
}
|
|
} |