я написал следующий полиморфный код:
public abstract class A
{
readonly int x;
A(int i_MyInt)
{
x = i_MyInt;
}
}
public abstract class B : A
{
//holds few integers and some methods
}
// concrete object class
public class C : B
{
// holds some variables and mathods
C(int MyInt)
{
// here i would like to initialize A's x
}
}
как я могу инициализировать x из C, я попытался передать параметры в C'tor A - но не сработало ..
Пожалуйста, помогите, заранее спасибо Amitos80 * 1006 *