110,891
社区成员
发帖
与我相关
我的任务
分享
if (!tempList.Contains(str))
{
tempList.Add(str); //将不重复的权限数据录入到tempList
}
else
{
strNew =strNew+str;
}
[Quote=引用 12 楼 xuyang840117 的回复:]
string fileName = System.IO.Path.Combine(Application.StartupPath,"1.txt");
string str= null;
using (System.IO.StreamReader sr = new System.IO.StreamReader(fileName))
{
while ((tmp = sr.ReadLine()) != null)
{
if (!tempList.Contains(str))
{
tempList.Add(str); //将不重复的权限数据录入到tempList
}
else
{
输出 str
}
}
}
[/Quote]
ht[tmp] = 0;