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

  • Home
  • SEARCH
  • 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 6810333
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:11:37+00:00 2026-05-26T20:11:37+00:00

I have a struct that contains two lists: struct MonthData { public List<DataRow> Frontline;

  • 0

I have a struct that contains two lists:

struct MonthData
{
   public List<DataRow> Frontline;
   public List<DataRow> Leadership;
}

However, I want to initialize both when the struct is created. If I try:

struct MonthData
{
   public List<DataRow> Frontline = new List<DataRow>();
   public List<DataRow> Leadership = new List<DataRow>();
}

Then I get:

Error   23  'MonthData.Frontline': cannot have instance field initializers in structs
...

Since structs cannot have parameterless constructors, I can’t just set this in a constructor either. So far, I can only see the following options:

  1. Initialize both properties when I create an instance of MonthData
  2. Use a class instead of a struct
  3. Create a constructor with a parameter and use that
  4. Make getters and setters for the properties that initialize them
    lazily.

What is the recommended approach for this? Right now, I’m thinking making this a class is the best idea.

  • 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-26T20:11:37+00:00Added an answer on May 26, 2026 at 8:11 pm

    You ought to use a class instead. From MSDN:

    In general, classes are used to model more complex behavior, or data that is intended to be modified after a class object is created. Structs are best suited for small data structures that contain primarily data that is not intended to be modified after the struct is created.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have a struct that contains local environments: public struct Environments {
I have an MFC C++ program that contains two classes, as follows; struct MyStruct
I have a struct that looks something like this: [StructLayout(LayoutKind.Sequential)] public struct in_addr {
I have a struct that I initialize like this: typedef struct { word w;
I have a struct PACKET which contains two int fields. How would I declare
Suppose I have a struct called foo_boolean that contains some boolean values: struct foo_boolean
I want to have two structs that can contain each other. Here is an
I know, that if i want to compare two structs than i have to
I have a JPanel that contains two JComponents, say two JButtons, btnLeft and btnRight.
I have this ordered List structure that has a structure that has two members,

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.