От: | AlexDav | ||
Дата: | 11.10.06 07:03 | ||
Оценка: |
А>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) { }
А>}
А>