Answers for "c# read line in character"

C#
6

c# read file line by line

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)  
{  
    System.Console.WriteLine(line);  
    counter++;  
}  
  
file.Close();  
System.Console.WriteLine("There were {0} lines.", counter);  
// Suspend the screen.  
System.Console.ReadLine();
Posted by: Guest on February-11-2021
2

c# readline char

Your_Char=Convert.ToChar(Console.readline());
Posted by: Guest on January-23-2021

C# Answers by Framework

Browse Popular Code Answers by Language