Projekt

Obecné

Profil

Stáhnout (240 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 bab6f59d silhavyj
namespace LDClient.utils {
2
3
    public static class IoUtils {
4
5
        public static string ReadFile(string filename) {
6
            return File.ReadAllLines(filename).Aggregate("", (current, line) => $"{current}{line}\n");
7
        }
8
    }
9
}