Exemple #1
0
 // fix - fix
 public static void UpdateArray <T>(this TextFileManager tfm, int line, int startColumn, int endColumn, T[] values, int frequency = 1, string format = "") => tfm.UpdateArray(line, startColumn, endColumn, values.ToList().ConvertAll(o => string.Format($"{{0:{format}}}", o)), frequency);
Exemple #2
0
 // fix - rel
 public static void UpdateArray <T>(this TextFileManager tfm, int line, int position, T[] values, char[] separators, int frequency = 1, string format = "") => tfm.UpdateArray(line, position, values.ToList().ConvertAll(o => string.Format($"{{0:{format}}}", o)), separators, frequency);