Answers for "C# string to int conversion (int)"

C#
2

how to convert string to int in c#

string a = ("2");
int b = Convert.ToInt16(a)
Posted by: Guest on September-05-2020

Code answers related to "C# string to int conversion (int)"

C# Answers by Framework

Browse Popular Code Answers by Language