От: | Аноним | ||
Дата: | 11.10.06 06:54 | ||
Оценка: |
interface IFace<T>
{
void Foo(T[,] arr);
}
class Test : IFace<int[]>
{
// error CS0539: 'IFace<...>.Foo' in explicit interface declaration is not a member of interface
void IFace<int[]>.Foo(int[][,] arr) { }
}