Answers for "c# as int"

C#
0

c# string to int

//Input must be numeric 0-9
string input = Console.ReadLine();

//Converts the string input to int
int X = int.Parse(input);

//Prints the X value
Console.WriteLine(X);
Posted by: Guest on March-04-2021

C# Answers by Framework

Browse Popular Code Answers by Language