I have a C++/CLI generic interface like this :
using namespace System::Collections::Generic;
namespace Test
{
generic <class T>
public interface class IElementList
{
property List<T>^ Elements;
};
}
and I want to implement it in a C# generic interface like this :
using Test;
namespace U
{
public interface IElementLightList<T> : IElementList<T>
where T : IElementLight
{
bool isFrozen();
bool isPastable();
}
}
This don't work, Visual Studio is not able to see C++/CLI IElementList interface ! I tested with a not generic C++/CLI interface and this work.
What I missed ?