I have 2 public interfaces used by a client
public interface IASet<T> where T : IItem {
HashSet<T> Collection { get; set; }
}
public interface IItem {
string Name { get; set; }
}
The idea is for the client to access the data through this object :
IASet<IItem> aset = GetIt();
foreach(IItem i in aset.Collection)
Console.WriteLine(i.Name);
The concrete implementation is as follow :
private class ASet : IASet<OneItem>{
public HashSet<OneItem> Collection { get; set; }
}
private class OneItem : IItem{
public string Name { get; set; }
}
And finnaly the function generating the objects :
public static IASet<IItem> GetIt()
{
ASet a = new ASet();
a.Collection = new HashSet<OneItem>();
a.Collection.Add(new OneItem() { Name = "one" });
a.Collection.Add(new OneItem() { Name = "two" });
//for test :
foreach (IItem i in a.Collection)
{
Console.WriteLine(i.Name);
}
/*Error 1 Cannot implicitly convert type 'ConsoleApplication2.Program.ASet'
* to 'ConsoleApplication2.IASet<ConsoleApplication2.IItem>'. An explicit
* conversion exists (are you missing a cast?)
*/
//return a;
/*Unable to cast object of type 'ASet' to type
* 'ConsoleApplication2.IASet`1[ConsoleApplication2.IItem]'.
*/
return (IASet<IItem>)a;
}
Because my real code is not as simple as this one, I cannot change ASet : IASet<OneItem>
to something like ASet<T> : IASet<T>
Could you please explain me why I cannot do that, and some suggestions to correct the problem ?
Thanks
I think you should take a look at my response to this question, it explains you case Interface with generic object of the interface type
By the way I suggest you make changes to you GetIt Function like that :
and then you need to call it like that:
if you want more details you have to explain your requirement more.