blob: 9c19f97915822bbfc6c5162716f14897e5709be5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using Notepad.Domain.FileSystem;
namespace Notepad.Infrastructure.Extensions {
public static class StringExtensions {
public static string FormatWith(this string formattedString, params object[] arguments) {
return string.Format(formattedString, arguments);
}
public static IFilePath AsAnAbsoluteFilePath(this string rawFilePath) {
return new AbsoluteFilePath(rawFilePath);
}
}
}
|