I have this line in C#:
newline_pos = Array.FindIndex(buffer, offset, bytes, x => (x == NEWLINE));
Really have question in this part x => (x == NEWLINE)
.
Please help me.
I have this line in C#:
newline_pos = Array.FindIndex(buffer, offset, bytes, x => (x == NEWLINE));
Really have question in this part x => (x == NEWLINE)
.
Please help me.
Go here: http://converter.telerik.com and convert the C# to VB.Net:
C#:
x => (x == NEWLINE)
VB.Net:
(Function(x) x = NEWLINE)