T
Tommaso Caldarola
public abstract class A
{
public virtual MethodOne()
{
}
public void AbstractMethod();
}
public abstract class B : A
{
// How to hide MethodOne and AbstractMethod?
}
Inviato da X-Privat.Org - Registrazione gratuita http://www.x-privat.org/join.php
{
public virtual MethodOne()
{
}
public void AbstractMethod();
}
public abstract class B : A
{
// How to hide MethodOne and AbstractMethod?
}
Inviato da X-Privat.Org - Registrazione gratuita http://www.x-privat.org/join.php