mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
15 lines
325 B
C#
15 lines
325 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;
|
|
}
|
|
}
|
|
} |