Link to home
Start Free TrialLog in
Avatar of karanba
karanba

asked on

Javascript to c#

I need the equivalent of this two function in c#


   JAVSCRIPT                                     C#
--------------------------------- -----------------------
String.fromCharCode                     ?
str.charCodeAt(i)                           ?
ASKER CERTIFIED SOLUTION
Avatar of aspnetguy
aspnetguy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of karanba
karanba

ASKER

String s = new String(new char[] {112,108,97,110});


I got error with this.