I'm having some problems with a generic abstract class and it's subclasses, and I don't know how to work it out. I have the following abstract class:
public abstract class Loader<T> where T: CommonPoco {
public virtual List<T> LoadFromFile(StreamReader input, out List<T> result, bool trackProgress) {
return LoadFromFile(input, out result, trackProgress, CultureInfo.CurrentCulture);
}
public abstract List<T> LoadFromFile(StreamReader input, out List<T> result, bool trackProgress, IFormatProvider format);
public abstract T UploadToDb(List<T> data);
}
This is my CommonPoco:
public class CommonPoco {
private int line;
public int Line {
get { return line; }
set { line = value; }
}
private string error;
public string Error {
get { return error; }
set { error = value; }
}
}
Now I also have many other subclasses of Loader like this one:
public class CountryLoader: Loader<Country> {
public override List<Country> LoadFromFile(StreamReader input,
out List<Country> result, bool trackProgress, IFormatProvider format) {
//Method implementation
}
public override Country UploadToDb(List<Country> data) {
//Method implementation
}
And I also have many subclasses of CommonPoco including the Country class. So far so good. Now to the problem, I would like to implement a, generic?, method. This method will, based on some parameter, use the correct loader for the task. Maybe something like this:
void LoadModule<T>(Module module) where T: CommonPoco {
Loader<T> loader;
switch (module) {
case Module.Country:
loader = new CountryLoader();
break;
}
}
This does not work and the compiler complains saying it can't convert from CountryLoader to Loader. I have to create a method to load each of my modules and they are exactly the same code except for the initialization of the Loader class. I really hate duplicated code so, how can I achieve this ? Thanks in advanced for the advices.
Forgot to mention, using .NET Framework 4.0. I'm willing to change whatever is needed, even my abstract class if I have to. Thanks. I wonder if using an interface instead of an abstract class would allow me to do this.
out List<T>parameter in a method with aList<T>return value? That seems very odd. – phoog May 11 '12 at 16:22Loader<Country>(which isCountryLoader) is not aLoader<CommonPoco>. So whileCountrymay inherit fromCommonPoco(even though that relationship isnt mentioned in the above OP), the generic class isnt an inheritance. – Tejs May 11 '12 at 16:23module) and expect strongly typed results. You might need to rethink how you plan on accessing that data if you can't determine the result type. – Tejs May 11 '12 at 16:24LoadertoCommonPocois not generic. Why not just remove the generic definition and useCommonPocodirectly in place ofT. – Jodrell May 11 '12 at 16:29