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 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've found a answer how to remove diacritic characters on stackoverflow, but could you
This is probably a really simple jQuery question, but I couldn't answer it after
I searched google but couldn't find an answer to this rather simple question. I
Simple question, but for some reason I couldn't find the exact answer on Google:
This may be a very simple problem, but I couldn't find an answer googleing
Could somebody please do a rundown of how to programmatically encrypt a config-file in
I googled around and coulnd't really find an answer. How do I open an
Could someone recommend any good resources for creating Graphics User Interfaces, preferably in C/C++?
Could someone tell me what the units the SetTimeout(int) method in the ICriteria interface
Could anybody explain in plain words how Cloud computing works? I have read 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.