blah blah blah is here! blah blah » Close

1
votes
1 answers

For loop with pause/resume and speed up/slow down

I have a project that essentially loops through a file and performs a task on each line (sending it to a different server). The files will be quite large and the task quite demanding on the server so I’d like to be able to pause (or break) ...

0
votes
2 answers

Can someone please explain this line of C# code to me?

I've been dodging arrays for quite some time in C# but now it's time to ride that horse. The following code: Code: [code] private void button1_Click(object sender, EventArgs e) { 1 // create the array 2 ...

Feedback