Help about fromCharCode function
Hi everyone,
Could someone tell me that is there any function in C# is equivalent to the JavaScript's String.fromCharCode???
String.fromCharCode(...) is a function in JavaScript that returns a string from a number of Unicode character values.
For example,
alert(String.fromCharCode(65)); // the output is "A"
alert(String.fromCharCode(65,66,67)); // the output is "ABC"
alert(String.fromCharCode(34920,22969)); // the output contains some chinese or japanese charachers
Is there any function in C# similarly does the task above?
Thank you very much.
Lot.