InterviewSolution
| 1. |
How Can I Get The Ascii Code For A Character In C#? |
|
Answer» Casting the char to an int will give you the ASCII value: char c = 'f'; Casting the char to an int will give you the ASCII value: char c = 'f'; |
|