Projekt

Obecné

Profil

Stáhnout (245 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 afafbc22 Pultak
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
7
namespace LDClient.utils {
8
    public interface IFileUtils {
9
10
        public string[] ReadFileAllLines(string file);
11
    }
12
}