请检查以下代码部分(简化版)
我关心的是ReadPath
我需要调用我正在使用的类型的 GetPath() 的类。我怎样才能做到这一点?
public interface IPath
{
string GetPath();
}
public class classA: IPath
{
string GetPath()
{
return "C:\";
}
}
public class classB: IPath
{
string GetPath()
{
return "D:\";
}
}
public class ReadPath<T> where T : IPath
{
public List<T> ReadType()
{
// How to call GetPath() associated with the context type.
}
}