Thanks! .NET is such a total maze of commands and classes The ToInt32 works, but the other one results in: “InvalidCastException: This conversion is not supported”.
EDIT: Solved. Also regular ints need to be converted to an Int32. Probably due the fact the conversion supports Unicode characters.
static function numberToAlphabet(dNumber) {
dNumber+=65;
var c=Convert.ToInt32(dNumber);
var chr = Convert.ToChar(c);
return(chr);
}