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 9062977
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:52:23+00:00 2026-06-16T15:52:23+00:00

Which object initialization style is more appropriate in C#? Declare private object and initialize

  • 0

Which object initialization style is more appropriate in C#?

  • Declare private object and initialize it in the same line:

    private List<ReportRow> rows = new List<ReportRow>();
    
  • Declare private object and initialize it in the constructor:

    private List<ReportRow> rows;
    

    In constructor

    rows = new List<ReportRow>();
    
  • Declare private object and initialize it in the method where it is used:

    private List<ReportRow> rows;
    

    and in my Run() method

     rows = new List<ReportRow>();
    

Thanks

  • 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-06-16T15:52:25+00:00Added an answer on June 16, 2026 at 3:52 pm

    All of them are appropriate. It really depends on the details of the code. If you’re simply initializing the field to an empty list my preference is to initialize it in-line with the declaration. If you’re putting values into a list dependent on constructor parameters then I go with initializing it in the constructor. If the population is expensive and possible to skip then I’d go with initializing it the first time the consuming code is called.

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

Sidebar

Related Questions

I have an object which is contained within a List<>, I need to remove
Is there a way to specify which object to use for global when invoking
I have this object which is an instance of a superclass. I want to
I have an object which contains models for my ASP.NET MVC web app. The
I have an object which has several properties that are set when the object
I have an object which needs to destroy itself. Can it be done? Is
I Have a object which the following field : boost::unordered_map<std::string, std::shared_ptr<Foo> > m_liste_; I
I have an object which I first want to rotate (about its own center)
I have an object which im converting into an array of coords which will
I have a SelectItem object which has a few items. I set a value

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.