Hi again all
This is the 2nd problem i'm having....can anybody help?
I need to Improve this code -
using System;
namespace ExampleApp
{
/// <summary>
/// This program will read in the test.txt file and output it to the command line
/// Improve this code
/// </summary>
class ImproveTheCode
{
static void Main(string[] args)
{
int counter = 0;
string line;
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:\\test.txt");
while ((line = file.ReadLine()) != null)
{
Console.WriteLine(line);
counter++;
}
}
}
}
This is the 2nd problem i'm having....can anybody help?
I need to Improve this code -
using System;
namespace ExampleApp
{
/// <summary>
/// This program will read in the test.txt file and output it to the command line
/// Improve this code
/// </summary>
class ImproveTheCode
{
static void Main(string[] args)
{
int counter = 0;
string line;
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:\\test.txt");
while ((line = file.ReadLine()) != null)
{
Console.WriteLine(line);
counter++;
}
}
}
}