如何使用VB.Net转到文本文档中的新行
发布时间:2020-12-17 00:01:57 所属栏目:大数据 来源:网络整理
导读:运用 File.AppendAllText("c:mytextfile.text","This is the first line")File.AppendAllText("c:mytextfile.text","This is the second line") 如何将第二行文本显示在第一行下,就像我按下Enter键一样?这样做只需将第二行放在第一行旁边. 使用Environmen
运用
File.AppendAllText("c:mytextfile.text","This is the first line") File.AppendAllText("c:mytextfile.text","This is the second line") 如何将第二行文本显示在第一行下,就像我按下Enter键一样?这样做只需将第二行放在第一行旁边.
使用Environment.NewLine
File.AppendAllText("c:mytextfile.text",Environment.NewLine + "This is the second line") 或者您可以使用StreamWriter Using writer As new StreamWriter("mytextfile.text",true) writer.WriteLine("This is the first line") writer.WriteLine("This is the second line") End Using (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |