How to convert Char.Parse from VB.NET to VB.NET CF?

  • Thread starter Thread starter Alberto
  • Start date Start date
A

Alberto

Hi

I have this in VB.NET:
ch = Char.Parse(Data.Substring(2, 1))

and works fine, but not in CF. How I can translate it to VB.NET CF?

tx
 
ch = Data[2]; // in c#
ch = Data(2); // in think it is that in VB

hopes that's help
ROM

"Alberto" <[email protected]> a écrit dans le message de news: (e-mail address removed)...
Hi

I have this in VB.NET:
ch = Char.Parse(Data.Substring(2, 1))

and works fine, but not in CF. How I can translate it to VB.NET CF?

tx
 
Back
Top