Equivalent of String.fromCharCode() method in J# -
08-18-2004
, 08:28 PM
In Jscript, fromCharCode returns a string from a number of
Unicode character values.
In the following example, test contains the string "plain":
var test = String.fromCharCode(112, 108, 97, 105, 110);
Does anyone know the equivalent of this method in J#?
Thanks,
Bob |