Answers for "c# number from readline"

C#
2

c# readline char

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

c# C# read text from a certain line number from string

string GetLine(string text, int lineNo) 
{ 
  string[] lines = text.Replace("r","").Split('n'); 
  return lines.Length >= lineNo ? lines[lineNo-1] : null; 
}
Posted by: Guest on December-12-2020

C# Answers by Framework

Browse Popular Code Answers by Language