Beispiel #1
0
 // fix - fix
 public static void UpdateWord <T>(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int position, char[] separators, T value, string format = "") => tfm.UpdateWord(anchorTexts, skipLines, position, separators, string.Format($"{{0:{format}}}", value));
Beispiel #2
0
 // fix - rel
 public static void UpdateWord <T>(this TextFileManager tfm, List <string> anchorTexts, int skipLines, int startColumn, int endColumn, T value, string format = "") => tfm.UpdateWord(anchorTexts, skipLines, startColumn, endColumn, string.Format($"{{0:{format}}}", value));
Beispiel #3
0
 // rel - fix
 public static void UpdateWord <T>(this TextFileManager tfm, int line, int position, char[] separators, T value, string format = "") => tfm.UpdateWord(line, position, separators, string.Format($"{{0:{format}}}", value));
Beispiel #4
0
 // Update Single item
 // rel - rel
 public static void UpdateWord <T>(this TextFileManager tfm, int line, int startColumn, int endColumn, T value, string format = "") => tfm.UpdateWord(line, startColumn, endColumn, Format(value, format));