在带有 C# 的 MVC3 中,可为空的模型的属性定义为
public int? MyProperty { get; set; }
但是我怎样才能用 vb.Net 语言翻译它?
在带有 C# 的 MVC3 中,可为空的模型的属性定义为
public int? MyProperty { get; set; }
但是我怎样才能用 vb.Net 语言翻译它?
Public Property MyProperty As Integer?
public property MyProperty As Nullable(Of Integer)
为了对此进行扩展,有 3 种公认的方式:
Dim ridesBusToWork1? As Boolean
Dim ridesBusToWork2 As Boolean?
Dim ridesBusToWork3 As Nullable(Of Boolean)