I am trying to pick up on VB.net and have been programming in c# for a while. I have grasped pretty much most of vb.net but running into some issues with this conversion for object initialization:
CustomerParameters customerParameters = new CustomerParameters
{
FirstName = "C First Name",
LastName = "C Last Name"
};
Any thoughts on how to do this in VB, or if it is even possible?