-1
我的問題是訪問從嵌套成員的抽象超類的成員(類或結構),另一個派生類如何從另一個子類的嵌套成員訪問一個抽象的超類的成員
的例如:
public abstract class DataAccessLayer {
public DataAccessLayer(string _connectionString) { //some code }
//some member functions
}
另一班從這個類派生
public class DataStructureLayer : DataAccessLayer {
pubic DataStructureLayer(string connectionString) : base(connectionString) { // NOP }
//Here we have structures or classes
//we want to access members of a superclass "DataAccessLayer"
//from these struts
public struct Books {
//members
}
{
}
我想使用超類成員派生一個嵌套的結構裏面沒有從這個例子中,有沒有辦法?
您使用的是什麼技術? –
你是什麼意思>>如果我知道你的想法 - .net技術 –
什麼語言?它是C#嗎? –