I have C# code as such:
I am trying to convert it and much like it to vb.net
I currently have this
I seem to be having a problem with the first condition. How do I make the equivalent of:
in VB.NET
Code:
if ((attributeValue[i] < '\x20') && (attributeValue[i] != '\t') && (attributeValue[i] != '\n') && (attributeValue[i] != '\r'))
{
I am trying to convert it and much like it to vb.net
I currently have this
Code:
If (Asc(attributeValue(i)) < 20 And (attributeValue(i) <> vbTab) And (attributeValue(i) <> vbNewLine) And (attributeValue(i) <> vbCr)) Then
I seem to be having a problem with the first condition. How do I make the equivalent of:
Code:
attributeValue[i] < '\x20'
in VB.NET