Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 914149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T17:40:25+00:00 2026-05-15T17:40:25+00:00

I have been looking at some C# code: List<Employee> Employees = new List<Employee>{ new

  • 0

I have been looking at some C# code:

List<Employee> Employees = new List<Employee>{
    new Employee{firstname="Aamir",lastname="Hasan",age=20},
    new Employee{firstname="awais",lastname="Hasan",age=50},
    new Employee{firstname="Bill",lastname="Hasan",age=70},
    new Employee{firstname="sobia",lastname="khan",age=80},  
    };

Now when I convert this to vb.net

Dim Employees as List(Of Employee) = New List(Of Employee)() With { New Employee() With { _  
.firstname = "Aamir", _  
.lastname = "Hasan", _   
.age = 20 _  
}, _  
New Employee() With { _  
.firstname = "awais", _  
.lastname = "Hasan", _  
.age = 50 _  
}, _  
New Employee() With { _  
.firstname = "Bill", _  
.lastname = "Hasan", _  
.age = 70 _  
}, _  
New Employee() With { _  
.firstname = "sobia", _  
.lastname = "khan", _  
.age = 80 _  
} _  
}  

I get the error “Name of field or property being initialized in an object initializer must start with’.’.”

Now I can get an array of employee using the code:

Dim Employees = { New Employee() With { _  
.FirstName = "Aamir", _  
.LastName = "Hasan", _   
.Age = 20}, _  
New Employee() With { _    
.FirstName = "Awais", _   
.LastName = "Hasan", _  
.Age = 50}, _
New Employee() With { _
.FirstName = "Bill", _ 
.LastName = "Hasan", _  
.Age = 70 _
} _  
}    

But I would like a List(Of Employee) as it is bugging me as to why this doesnt work in vb.net?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T17:40:26+00:00Added an answer on May 15, 2026 at 5:40 pm

    EDIT (2)
    As pointed out in comments, VB.NET collection initializers have now been introduced, and a lot of the following post should be considered obsolete.

    EDIT
    Don’t always blindly trust the C# to VB.NET converter
    Here’s a handy tool for online conversion

    Turns out VB.NET doesn’t have collection initializers. Which means there is no equivalence of

    var myList = new List<string>()
    {
       "abc",
       "def"
    };
    

    … but it does have object initializers. So you can create an instance of a class and assign values to its properties all in one go, but you cannot create an instance of a list and add items to it all in one go.

    There closest you can get is in the link above. You can create an Array and add items to it in a single operation, and then you have to ToList that array.

    So this time I’ve actually compiled the code myself, and it works. Sorry for the hassle

        Dim EmployeesTemp As Employee() = { _
            New Employee() With { _
                .firstname = "Aamir", _
                .lastname = "Hasan", _
                .age = 20 _
            }, _
            New Employee() With { _
                .firstname = "awais", _
                .lastname = "Hasan", _
                .age = 50 _
            }, _
            New Employee() With { _
                .firstname = "Bill", _
                .lastname = "Hasan", _
                .age = 70 _
            }, _
            New Employee() With { _
                .firstname = "sobia", _
                .lastname = "khan", _
                .age = 80 _
            } _
        }
    
        Dim Employees as List(Of Employee) = EmployeesTemp.ToList()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been looking through some code on an open source project recently and
Have been looking on some tutorials for drawing canvas using SurfaceView, but the only
I have been looking for some time for this and I can't seem to
Hi i have been looking for some solutions but i have found nothing... Is
I have been looking into AWS spot instances for some jobs however instead of
I have been looking around on the web and found some articles about the
I have been looking for an answer for some time now, hope you could
I have been looking all over the internet and i found some good guides
I am looking for some input on something I have been thinking about for
I have been looking to switch to OAuth for my Twitter integration code and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.