gpt4 book ai didi

vb.net - 与此 C# 代码等效的 VB.NET 是什么?

转载 作者:行者123 更新时间:2023-12-04 20:24:48 27 4
gpt4 key购买 nike

VB.NET 相当于这个 C# 代码吗?

    ctx.Load(site,
x => x.Lists.Where(l => l.Title != null));

我试过了
 ctx.Load(site, Function(x) x.Lists.Where(Function(l) l.Title IsNot Nothing))

但是这个错误 "The expression (Convert(l.Title) != null) is not supported."
想法

最佳答案

如果标题是字符串尝试使用 IsNullOrEmpty();

或者

Nullable(Of T).HasValue 如果标题为 Nullable

或者

Sub Main()

Dim list As New List(Of A)

Dim a1 As New A
a1.Title = "sqws"
Dim a2 As New A
a2.Title = Nothing


list.Add(a1)
list.Add(a2)

Dim q = From c In list Where c.Title IsNot Nothing

End Sub



Public Class A

Dim t As String

Public Property Title() As String
Get
Title = t
End Get
Set(ByVal value As String)
t = value
End Set
End Property

End Class

关于vb.net - 与此 C# 代码等效的 VB.NET 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2411637/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com