Exemplo n.º 1
0
 private KeySearchResult findKey(string key, string[] lines)
 {
     return(KeySearchResult.FindKey(key, lines));
 }
Exemplo n.º 2
0
 private KeySearchResult findKey(string key)
 {
     string[] content = File.Exists(filePath) ? File.ReadAllLines(filePath, encoding) : new string[0];
     return(KeySearchResult.FindKey(key, content));
 }