本文介绍了C#(清晰)从txt文件读取随机行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有人可以告诉我如何从txt文件读取随机行吗?我想从txt文件中读取随机行,并在textBox中仅显示该行.代码示例会很棒!感谢前进
Can anyone tell me how to read random line from txt file? I want to read random line from txt file and show only that line in textBox.Code examples would be great!Thanx in foward
推荐答案
var lines = File.ReadAllLines(path);
var r = new Random();
var randomLineNumber = r.Next(0, lines.Length - 1);
var line = lines[randomLineNumber];
这篇关于C#(清晰)从txt文件读取随机行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!