Can someone conert this to VB?
if
(iMessage.Substring(i,1).Equals("æ")){
tmpString+=((
char)29).ToString();}
Thanks
if
(iMessage.Substring(i,1).Equals("æ")){
tmpString+=((
char)29).ToString();}
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SolitairePosted Aug 17, 2005, 9:11 PM
I used the Instant VB Converter. Get it at www.instantvb.com
iMessage.Substring(i,1).Equals("æ") ThenIf
tmpString+=(Chr(29)).ToString()
End
If