I have run into a situation where I am curious what a possible solution, or alternative, to this use case might be.
I have a class with a method signature that accepts a generic parameter. So I made the method signature itself generic:
/// <summary>
/// Input Widget.
/// </summary>
public sealed class InputWidget {
/// <summary>
/// Widget's Control.
/// </summary>
public IList<dynamic> Controls { get; private set; }
public InputWidget AddControl<TC>(InputControl<TC> control) where TC : BaseControl<TC> {
this.Controls.Add(control);
return this;
}
}
If I want to assign that parameter to a class property, for whatever reason, I can't do that unless the the property's type is object, or starting with .NET 4, dynamic.
Using dynamic over object saves me the trouble of having to work around casting an object back to its generic type when I retrieve each element from the list for further usage. But I am also not too happy with dynamic since I get no compile type safety, Intellisense, and it can be fatal at run time if I am not careful.
So why am I not simply declaring my class to be generic? Because I don't want to limit my method to accept an InputControl of a specific type. Moreover, I have other methods defined, which I omitted, that require the same approach. If would be boring to define my class with N number of generic types, where N is the number of methods in this case.
So what's the best approach to handle a scenario like this? Am I missing something? Am I thinking incorrectly? Even worse, is my design completely wrong and I need to start reading a beginners book again?
AddControl<Exception>()? You probably want a non-generic base type, covariance, and/or constraints. What are you trying to accomplish? – SLaks Jan 20 at 13:42