Answers for "how to convert a string into int c#"

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 "how to convert a string into int c#"

C# Answers by Framework

Browse Popular Code Answers by Language