次のクラスとインターフェイスがあります。
public interface IThing
{
string Name { get; }
}
public class Thing : IThing
{
public string Name { get; set; }
}
public abstract class ThingConsumer<T> where T : IThing
{
public string Name { get; set; }
}
これで、次のような ThingConsumer から派生したオブジェクトを返すファクトリができました。
public class MyThingConsumer : ThingConsumer<Thing>
{
}
私の工場は現在、次のようになっています。
public static class ThingConsumerFactory<T> where T : IThing
{
public static ThingConsumer<T> GetThingConsumer(){
if (typeof(T) == typeof(Thing))
{
return new MyThingConsumer();
}
else
{
return null;
}
}
}
私はこのエラーでつまずいています:Error 1 Cannot implicitly convert type 'ConsoleApplication1.MyThingConsumer' to 'ConsoleApplication1.ThingConsumer<T>'
私がここで試みていることを達成する方法を知っている人はいますか?
ありがとう!
クリス