vb.net - What's the equivalent of VB's Asc() and Chr() functions in C#? - Stack Overflow
VB has a couple of native functions for converting a char to an ASCII value and vice versa - Asc() and Chr(). Now I need to get the equivalent functionality in C#. What's the best way? ... Given char c and int i, and functions fi(int) and fc(char): From c...