在C#中创建对象时,我们也可以(同时)填写其属性.这在VB.NET中是否可行? 例如: MyObject obj = new MyObject{ Name = "Bill", Age = 50}; 是的,这是可能的: Dim obj As New MyObject With { .Name = "Bill", .Age = 5
例如:
MyObject obj = new MyObject { Name = "Bill", Age = 50 };是的,这是可能的:
Dim obj As New MyObject With { .Name = "Bill", .Age = 50 }
两件重要的事情:
>在课程名称之后和{…}之前使用关键字
>属性名称必须以点为前缀,因此必须使用.Name而不是Name
对于集合初始化程序,使用From关键字
Dim obj as New List(Of String) From { "String1", "String2" }