如何使用c#复制文本框中的文本文件?
我喜欢将整个文本文件复制到多行文本框中,我该怎么做?
i like to copy the whole textfile into multiline textbox ,how can i do these?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我喜欢将整个文本文件复制到多行文本框中,我该怎么做?
i like to copy the whole textfile into multiline textbox ,how can i do these?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
使用 ReadAllLines 方法将文件作为字符串数组读取,并将其放入文本框中:
Use the
ReadAllLines
method to read the file as an array of strings, and put that in the textbox:使用
System.IO
命名空间中的类(例如File
)。Use classes from
System.IO
namespace (e.g.File
).