Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Getting to Properties in derived class from base
Message
De
01/11/2010 13:22:17
Timothy Bryan
Sharpline Consultants
Conroe, Texas, États-Unis
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Titre:
Getting to Properties in derived class from base
Versions des environnements
Environment:
C# 4.0
Divers
Thread ID:
01487780
Message ID:
01487780
Vues:
98
Hi all,

If I have a base class, and App level class, and several inherited classes but have added a property in the App Level classe, how can I get to it from the base? I have a reference to the class in the base
public class MyBase()
{
     
     public method MyMethod()
     {
          // I  want to access the EnableSomething property of the specific class here
          // There is a reference to the class in a property
          this.RunningClass.  // property not available.  How to get it?
     }
}

public class MyAppLevelBase() : MyBase
{
     //Property added here
     public bool EnableSomething
     {
          get {return this._enableSomething; }
          set {this._enableSomething = value; }
     }
}

// bunch of classes like this one
public class MyClass1() : MyAppLevelBase
{
    public MyClass1()
    {
        this.EnableSomething = true;
     }
}
Timothy Bryan
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform