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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:05:01+00:00 2026-05-28T02:05:01+00:00

I have a class derived from base class which has a private field. How

  • 0

I have a class derived from base class which has a private field.
How can I get the BaseType field value?

public class SuperClass : BaseClass
{
}

public class BaseClass
{
    private object theField;
}

I have the SuperClass instance and the code should be something like:

var baseType = super.GetType().BaseType;
var fieldInfo = baseType.GetField("theField", BindingFlags.NonPublic | BindingFlags.Instance);

Now how can I get the value from fieldInfo? Or my approach is wrong?

  • 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-28T02:05:02+00:00Added an answer on May 28, 2026 at 2:05 am

    Use FieldInfo.GetValue

    fieldInfo.GetValue(this)
    

    Incidentally you don’t need super.GetType – you can just do:

    this.GetType().BaseType
    

    Equally, since you know the base type – it’s possibly marginally quicker to do

    typeof(BaseClass).GetField("theField" ....)
    

    Update

    I used this because your question implies that the code you’ve written is part of SuperClass because you have written (despite it not being valid C#):

    var baseType = super.GetType().BaseType; 
    

    If that’s not the case, and you have an instance of SuperClass then this will do:

    var obj = new SuperClass();
    var privateValue = typeof(BaseClass).GetField("theField", 
      BindingFlags.NonPublic | BindingFlags.Instance).GetValue(obj);
    

    I would actually strongly recommend against using obj.GetType().BaseType – because your reflection will immediately break if you choose to inject a base between SuperClass and BaseClass; whereas using typeof(BaseClass) won’t – unless you actually remove BaseClass from SuperClass‘s inheritance tree.

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

Sidebar

Related Questions

I have a base class that inherits List<> which has multiple classes derived from
I have a base class which has two child classes derived from it. class
I have a class which is derived from a base class, and have many
I have a data object which has a base class with three derived classes,
I have a base class called Component which has a number of classes derived
I have a base class Character which has several classes deriving from it. The
I have a c++ class derived from a base class in a framework. The
I have a class, say DerivedBindingList<T> , which is derived from BindingList<T> . I
I believe, a derived class can override only those functions which it inherited from
I have a base class which looks something like this: class Base { public:

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.