I have two Interfaces, one of them is a generic one, allowing only Types that derive from the second Interface. They look like this:
public interface IProvider<T> where T : IContent
{
T getContent(int i);
void addContent(T content);
}
public interface IContent
{
string whatIAm();
}
Of course my real Interfaces are more complex but it is enought to show what my problem is. Now i have for each interface a concrete class:
public class Provider : IProvider<FileContent>
{
public FileContent getContent(int i)
{
return null;
}
public void addContent(FileContent content)
{
}
}
public class FileContent : IContent{
public string whatIAm(){
return "FileContent";
}
}
And in my code i want to work with the reference type "IProvider" but the cast goes wrong... Please look at this example:
static void Main(string[] args)
{
Provider p = new Provider(); //works
IProvider<FileContent> pp = p as IProvider<FileContent>; //also works
IProvider<IContent> ppp = pp as IProvider<IContent>; //fails :(
}
ppp is always null. What do i have to change that this cast is working?
Thanks in advance.