|
|
От: |
master_of_shadows
|
|
| Дата: | 09.07.04 07:28 | ||
| Оценка: | |||
interface IFoo
{
void Method1();
}
class Base : IFoo
{
void IFoo.Method1()
{
}
}
class Child : Base, IFoo
{
void IFoo.Method1()
{
}
}