It is possible to implement something like this? I have a problem with this code in the declaration of class SomeClass.
The exception that I'm receiving is:
'WindowsFormsApplication1.SomeClass' does not implement interface member 'WindowsFormsApplication1.IB.SomeGetter'. 'WindowsFormsApplication1.SomeClass.SomeGetter' cannot implement 'WindowsFormsApplication1.IB.SomeGetter' because it does not have the matching return type of 'WindowsFormsApplication1.MyClass'.
My code:
public interface IA
{ }
public interface IB
{
MyClass<IA> SomeGetter { get; }
}
public class A : IA
{ }
public class MyClass<T>
where T : IA
{ }
public class SomeClass : IB
{
public MyClass<A> SomeGetter
{
get { return new MyClass<A>(); }
}
}
Any idea how to do it?