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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:36:01+00:00 2026-05-20T09:36:01+00:00

There was a question comparing C# code and VB.NET and the results between the

  • 0

There was a question comparing C# code and VB.NET and the results between the seemingly identical code were entirely different.
(I wrote a program that allow two classes to "fight". For whatever reason C# always wins. What's wrong with VB.NET?)

The explanation given is that C# will initialize the class fields, then call the base constructor, but VB.NET does the exact opposite.

My question is – why?

Is there a technical reason for the languages to be different? At first glance, it seems that either approach is equally valid, but I can’t fathom why they wouldn’t have selected the SAME approach.

EDIT: As ‘Jeffrey L Whitledge’ has pointed out, VB6 did not have inheritance, so I don’t think we can say ‘to keep VB.NET and VB6 more closely related’.

  • 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-20T09:36:02+00:00Added an answer on May 20, 2026 at 9:36 am

    It is possible for a base constructor to expose an object to the outside world before derived-class constructors have run. While one should often avoid doing this, there are times when it’s necessary. For example, one might have two objects which hold references to each other, and each object might have as a class invariant that the reference to the other object must be valid. Creating such a pair of objects would require having one object’s constructor pass the partially-constructed object to the other, or having an object’s constructor return before its class invariants were satisfied.

    If derived-class field initializers are not run until after the base class constructor has run, and if the base-class constructor exposes the object to the outside world, that would mean that the object would be exposed to the outside world before any derived-class initialization had taken place. The creators of C# didn’t like that idea, so they made derived-class initializers run before the base class constructor.

    On the other hand, running derived-class initializers before the base-class constructor has a disadvantage: those initializers can’t make any reference to the object under construction. There’s also no way for them to make use of any arguments that are passed to the constructor. Having an object be partially initialized before control is handed over to the base-class constructor may be nice, but there are some severe limits as to how it can be initialized; it may or may not be possible to have the object in a fully-useful state before the base constructor is run.

    The creators of vb.net apparently thought that since running initializers before the base constructor doesn’t eliminate the need to deal with partially-constructed objects being exposed to the outside world, and since it precludes the use of some useful techniques, it was better to have the initializers run after the base constructor. This makes it possible for a base-level constructor to expose one of its parameters as a field, and then have the derived-class use the value of that field in the derived-class field initializers.

    Arguably, the C# approach allows one to do things the vb.net one does not, but the reverse isn’t true (one could implement vb-style field initializers by simply writing to the fields at the start of the constructor). On the other hand, having the declaration and initialization of a field next to each other is cleaner than having declarations in one place and initializations someplace else. Too bad neither language allows one to specify that certain specific field declarations should follow the opposite paradigm from the norm.

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

Sidebar

Related Questions

Question Is there a way to have a method that will always run anytime
We have the question is there a performance difference between i++ and ++i in
Does anyone know why there are question marks (with a number) after the images
There are similar question, but not regarding C# libraries I can use in my
There is a question I have been wondering about for ages and I was
Question: Is there an easy way (library function) to perform a bitwise AND or
Or to reformulate the question: is there a performance penalty in using unsigned values?
I have seen this question: Are there any decent UI components for touch screen
Since I've gotten no answer at all to my question Is there an alternative
There is a similar question going around, but it just got the same old

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.