我正在尝试在VB.net上学习,并且已经在C#中编程了一段时间。我已经掌握了vb.net的大部分内容,但是在进行对象初始化的转换时遇到了一些问题:
CustomerParameters customerParameters = new CustomerParameters
{
FirstName = "C First Name",
LastName = "C Last Name"
};
关于如何在VB中执行此操作,或者甚至有可能进行任何思考?
最佳答案
Dim cp As New CustomerParameters() With { _
.FirstName = "C First Name", _
.LastName = "C Last Name" _
}