首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

vb2008 怎么循环txt内容

2012-06-05 
vb2008 如何循环txt内容vb2008 如何循环txt内容,再一行一行的写到其他txt中, 如何有重复的去掉[解决办法]m

vb2008 如何循环txt内容
vb2008 如何循环txt内容,再一行一行的写到其他txt中, 如何有重复的去掉

[解决办法]
msdn search TextReader TextWriter

[解决办法]

VB.NET code
...'use TextReader read textfile to stringReadDim stringToWrite As StringstringToWrite = string.Join(VbCrLf, stringRead.Split(VbCrLf).Distinct())'use TextWriter write stringToWrite to another textfile... 

热点排行