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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:27:29+00:00 2026-05-13T06:27:29+00:00

MSDN says: When used as a modifier, the new keyword explicitly hides a member

  • 0

MSDN says:

When used as a modifier, the new
keyword explicitly hides a member
inherited from a base class. When you
hide an inherited member, the derived
version of the member replaces the
base-class version. Although you can
hide members without the use of the
new modifier, the result is a warning.
If you use new to explicitly hide a
member, it suppresses this warning and
documents the fact that the derived
version is intended as a replacement.

Example:

class Base
{
 int value;

 virtual bool Foo()
 {
   value++;
 }
}

class Derived : Base
{
 int value;

 override bool Foo()
 {
  value++;
 }

}

Do I have to add new modifier to Derived.value declaration? What changes?

  • 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-13T06:27:29+00:00Added an answer on May 13, 2026 at 6:27 am

    Since the value field is private, it’s not accessible in the derived class. Thus, the declaration in the derived class does not really hide anything. You shouldn’t add new to the declaration. If you do, nothing changes, except the compiler will warn you about using new incorrectly. If the value field was accessible in the derived class (e.g. it was public), then you should have used new to express your intention to hide the base member:

    class A {
        public int field;
    }
    class B : A {
        public int field; // warning. `B.field` hides `A.field`. 
    }
    

    Using new will silence that warning (it will have no other effect):

    class B : A {
        public new int field; // Dear compiler, shut up please.
    }
    

    You can’t declare a method as both override and new. They are mutually exclusive.

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

Sidebar

Related Questions

The MSDN documentation says that public class SomeObject { public void SomeOperation() { lock(this)
MSDN says that the function SetDllDirectory() can be used to insert a directory into
MSDN says that you should use structs when you need lightweight objects. Are there
http://msdn.microsoft.com/en-us/library/system.object.gethashcode(VS.80).aspx says: For the best performance, a hash function must generate a random distribution
From MSDN: The CancelWaitableTimer function does not change the signaled state of the timer.
I used the code from http://www.rgagnon.com/javadetails/java-0580.html to get Motherboard Id, but the result is
I want to use the information obtained by calling System.Web.ProcessModelInfo.GetCurrentProcessInfo() . But MSDN says
In Executing Control Panel Items , MSDN says this: Windows Vista Canonical Names In
When typing into a CRichEditCtrl, EN_CHANGE messages are generated. However MSDN says: Rich Edit:
This is a XAML code sample taken from the MSDN library article for the

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.