2012-05-17 48 views
0

如何比較hashset與文件的內容?將哈希集與文件進行比較

我需要某種循環,將文件內容與hashset比較,然後停在hashset的地方是它沒有找到相同內容的文件

+0

在你還沒有嘗試過什麼? –

回答

1

樣品

string[] array1 = { "cat", "dog", "cat", "leopard", "tiger", "cat" }; 
var hash = new HashSet<string>(array1); 
    string f = "TextFile1.txt"; 
using (StreamReader r = new StreamReader(f)) 
{ 

    string line; 
    while ((line = r.ReadLine()) != null) 
    { 

    if(!hash.Contains(line)) 
       break; 
    } 
} 
相關問題