I'm writing an app where I need to get the ASCII value of a character. In VB it is done like the following:<BR><BR>intValue = Asc("A") 'returns 65<BR><BR>Does anybody know the equivalent to this in C# ...