Answers for "how to convert a number to a char in c#"

C#
0

how to convert int to char in c#

int i = 65;
char c = Convert.ToChar(i);
Posted by: Guest on May-27-2021

Code answers related to "how to convert a number to a char in c#"

C# Answers by Framework

Browse Popular Code Answers by Language