Not sure what this question is exactly about.
Here is the problem. Suppose, I am working on a framework that is going to be packed into an assembly without source code available and shipped as a product. From the very beginning the framework is developed with extensibility in mind, by which I mean that some target domain details/data/classes are to be defined by the end user / assembly that refers the framework. One of the ways to enable it is to use generics in the framework for everything to be defined later. But once a generic is introduced to a single class all dependent/referring classes and methods have to re-declare it with all the exact constraints. It's not a big deal to pass around a single generic, but things go very quickly out of control when you have to deal, say with 8 of them, which is not something uncommon at all. In every little class in your framework you have to put several lines of just redeclared type parameters that are all the same among all of your classes. It seems like a quick and dirty solution would be just to have some kind of c++like macro that would add the same generic declaration to all (most of) classes. But C# doesn't have macros, so you have to do it by hands. Here is where we come to a question: what would it take to get these parameters out of brackets and declare them once at the assembly (project) level? So that you don't have to write "public class Entity*< TField>* { ... }", because TField is defined and whenever you see it, it means the class knows about it implicitly using the same declaration as the one at the assembly level. By linking such generic assemblies a developer has to provide all type arguments before they are able to use it, or if some parameters are still unbound, to redeclare them for later use.
Questions:
- have you ever found yourself in a situation like this?
- do you think that having this feature might be helpful?
- if so, how do you currently get along without one?
- for those who is working on c#: what is a chance that you guys will add this to some new version of c#?
Thank you!
UPDATE:
I didn't want to go too much into details, but did it as you wished. It's hard to make up a good illustrative example, so let me just share the existing situation. I am working on a text processing framework where I have a core lib that tokenizes the text and has all possible patterns to match it. What it doesn't know anything about is how to deal with parts of speech like nouns and verbs. Luckily there is another assembly that can do that. Now the goal is to extend the patterns from the core library with knowledge of parts of speech from another library. The way I did it is I added a special pattern to the core lib named "CustomPattern" that is parameterized by an arbitrary class which can be replaced with anything. In our case it is PartOfSpeach enum. Take a look at the code passage at https://gist.github.com/2651642.
Question here, how to avoid having the TDetails generic in the core lib and yet be able to use a custom pattern with arbitrary data attached to it?
The only requirement here is that we have to keep the code strictly typed as it is right now.
