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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T02:26:38+00:00 2026-05-17T02:26:38+00:00

Could you answer me how to do next, please? How to do this with

  • 0

Could you answer me how to do next, please?
How to do this with Lambda?
Is it possible to delegate some object instance and use its properties and methods in case if this method doesn’t know type of delegated object?

class class_a {
    public string getChildData<T> (T dynamicInstance) {
        return dynamicInstance.prop;
    }
}

class class_b : a {
    public string prop = "prop_b";
}

class class_c : a {
    public string prop = "prop_c";
}

var inst_b = new b ();
var inst_c = new c ();
b.getChildData(b);
c.getChildData(c);

Purpose : to get child property inside parent class?

Update : use Reflection – http://forums.asp.net/t/1608839.aspx

Thanks, Artem

  • 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-17T02:26:39+00:00Added an answer on May 17, 2026 at 2:26 am

    Use an abstract/virtual property instead of a field:

    abstract class ClassA
    {
        public abstract string MyProperty
        {
            get;
        }
    
        public void DoIt()
        {
            Console.WriteLine(this.MyProperty);
        }
    }
    
    class ClassB : ClassA
    {
        public override string MyProperty
        {
            get { return "prop_b"; }
        }
    }
    
    class ClassC : ClassA
    {
        public override string MyProperty
        {
            get { return "prop_c"; }
        }
    }
    
    var instB = new ClassB();
    var instC = new ClassC();
    instB.DoIt();
    instC.DoIt();
    

    See: Inheritance (C# Programming Guide)
    See: override (C# Reference)

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

Sidebar

Related Questions

I think the answer to this is no going in, but I could use
could anyone please answer my 3 DataTables-related questions? I'm trying to use DataTables in
I could not find a clear answer to this question elsewhere, so I'll try
I was asked this question and could not come up with the answer. Is
I have been looking for an answer to this and could not find it
I tried following the answer to this question , but could not get xsd.exe
I'm pants at MySQL, so I really need some help with this, please: I
If someone has the answer could you help me, please? I have 2 images
I was hoping someone could answer my quick question as I am going nuts!
I have several questions concerning the controls like a button, if You could answer

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.