Im struggling trying to convert this code. As well as googling for an answer and reading MSDN documentation i still cant figure this out. Ive also looked at the examples
101 for Visual Basic .Net 101 for C# .Net
Hers some C# code im trying to convert:
var asciiCredentials = (from c in credentials
select c <= 0x7f ? (byte)c : (byte)'?').ToArray();
My attempt so far:
Dim ascii = (From c In Credentials(Function(x) x= 0x7f .....)
But cant figure it out!! I think the Byte conversion is putting me off track.
Can anyone advise
