isJavaIdentifierPart(search.charAt(idx))

  • Thread starter Thread starter BigZero
  • Start date Start date
B

BigZero

Hello ppl,


i m completely new to c# and i m converting one API from java to c#, i
got stuck in the following point can any body tell me what is
equivalent in c# for following code

[java code]

if (!Character.isJavaIdentifierPart(search.charAt(idx)))
{
return -1;
}

[/java code]

What will be the C# code for this.


Thanks
Vm
 
Google for it, it's a standard operation on the Character class

Thanks sir,
but before post here i m already done that i did not got much
information on that so i posted my query here.




Thanks
Vm
 
Back
Top