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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:09:57+00:00 2026-05-11T17:09:57+00:00

Is there a good reason (advantage) for programming this style XmlDocument doc = null;

  • 0

Is there a good reason (advantage) for programming this style

XmlDocument doc = null;
doc = xmlDocuments[3];

vs

XmlDocument doc = xmlDocuments[3];

I have seen it many times but to me it just seem overly verbose

  • 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-11T17:09:57+00:00Added an answer on May 11, 2026 at 5:09 pm

    No – it’s generally considered best practice to declare a variable as late as you can, preferably setting it at the point of declaration. The only time when I don’t do that is when I have to set a variable conditionally, or it’s set in a more restrictive scope:

    String name;
    using (TextReader reader = ...)
    {
        // I can't declare name here, because otherwise it isn't
        // accessible afterwards
        name = reader.ReadToEnd();
    }
    

    Reasons for declaring at the point of first use where possible:

    • It keeps the variable’s type close to its use – no need to scroll back up in the method to find it.
    • It keeps the scope as narrow as possible, which makes the use of the variable more obvious.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 97k
  • Answers 97k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Since the width of the container is unknown, and the… May 11, 2026 at 7:21 pm
  • Editorial Team
    Editorial Team added an answer PyS60 specific info here: http://wiki.forum.nokia.com/index.php/Python_debugging_techniques May 11, 2026 at 7:21 pm
  • Editorial Team
    Editorial Team added an answer Unfortunately there is no way to simulate a link and… May 11, 2026 at 7:21 pm

Related Questions

During my apprenticeship, I have used NHibernate for some smaller projects which I mostly
I personally do not like programming languages being case sensitive. (I know that the
This is actually two questions rolled into one. Is there a particular type of
Well, after a long time writing .net programs in C# I started to feel
I have a warehouse. Sometimes I want to lookup a box location by a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top 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.