Answers for "c# char to int"

C#
3

c# char to int

int val = (int)Char.GetNumericValue('8');
Posted by: Guest on November-21-2020
0

c convert char to int

int i = (int)(c - '0');
Posted by: Guest on October-29-2020

C# Answers by Framework

Browse Popular Code Answers by Language