Чем отличаются this.Close() от Close() - C#
Формулировка задачи:
this.Close();
Close();
Решение задачи: «Чем отличаются this.Close() от Close()»
textual
Листинг программы
class A
{
public int q { get; set; }
public A(int q=0)
{
this.q = q;
}
}
class B:A
{
new int q { get; set; }
public B(int q, int qq)
{
this.q = q;
base.q = qq;
}
}