将csharp代码转换为vb.net

时间:2013-08-19 11:43:27

标签: c# vb.net

我有这个csharp代码,我想转换为vb.net:

var item = (from l in List2 select l).FirstOrDefault();
if(item != null) {...}

转换为vb:

Dim item = (from l in List2 select l).FirstOrDefault()
If item <> Nothing Then ... End If

但是项目&lt;&gt;会收到错误没什么

1 个答案:

答案 0 :(得分:4)

尝试

If item IsNot Nothing Then