thánh nào code hộ em bài tập c# này cái( có hậu tạ)

Joined
Aug 12, 2014
Messages
1,099
Reactions
437
MR
0.733
Chat with me via Skype
Cho file text có chứ n dòng dữ liệu, file text có tên là logic.txt lưu trong ổ D,
Viết chương trình chọn ngẫu nhiên dữ liệu của một dòng bất kỳ trong file text đưa vào clipboard
Bác nào gỉai hộ phát em hậu tạ ạ. :D
 

247onnet

Junior
Joined
Oct 21, 2012
Messages
36
Reactions
124
MR
0.000
static void Main(string[] args)
{
var lines = File.ReadLines(@"D:\logic.txt");
if(lines==null) return;
var total = lines.Count();
if (total <1 ) return;
var curRnd = new Random().Next(1, total);
var str = lines.Skip(curRnd).FirstOrDefault();
if(string.IsNullOrWhiteSpace(str)) return;
Clipboard.SetText(str);
}

>>>>>> Dùng File.ReadAllLines cũng được nhưng sẽ tốn bộ nhớ RAM hơn
>>>>>> Clipboard nằm trong ref của Forms, cần refer vào
 

MuaWMZ

Senior
Verified
Joined
Mar 5, 2014
Messages
635
Reactions
278
MR
0.009
Call me! Call me! Follow me on Facebook Chat with me via Skype
static void Main(string[] args)
{
var lines = File.ReadLines(@"D:\logic.txt");
if(lines==null) return;
var total = lines.Count();
if (total <1 ) return;
var curRnd = new Random().Next(1, total);
var str = lines.Skip(curRnd).FirstOrDefault();
if(string.IsNullOrWhiteSpace(str)) return;
Clipboard.SetText(str);
}

>>>>>> Dùng File.ReadAllLines cũng được nhưng sẽ tốn bộ nhớ RAM hơn
>>>>>> Clipboard nằm trong ref của Forms, cần refer vào
thánh :D
 
static void Main(string[] args)
{
var lines = File.ReadLines(@"D:\logic.txt");
if(lines==null) return;
var total = lines.Count();
if (total <1 ) return;
var curRnd = new Random().Next(1, total);
var str = lines.Skip(curRnd).FirstOrDefault();
if(string.IsNullOrWhiteSpace(str)) return;
Clipboard.SetText(str);
}

>>>>>> Dùng File.ReadAllLines cũng được nhưng sẽ tốn bộ nhớ RAM hơn
>>>>>> Clipboard nằm trong ref của Forms, cần refer vào
Xí em về em tést ngay, tối em inbõx hậu tạ bác sau nhé. :D
 

Announcements

Today's birthdays

Forum statistics

Threads
426,330
Messages
7,175,235
Members
178,776
Latest member
yazzz

Most viewed of week

Most discussed of week

Most viewed of week

Most discussed of week

Back
Top Bottom