我在C#中有这一行:
newline_pos = Array.FindIndex(buffer, offset, bytes, x => (x == NEWLINE));
本部分x => (x == NEWLINE)
确实有问题。
请帮帮我。
答案 0 :(得分:1)
转到此处:http://converter.telerik.com并将C#转换为VB.Net:
<强> C#:强>
x => (x == NEWLINE)
<强> VB.Net:强>
(Function(x) x = NEWLINE)