Possible Duplicate:
What is generics in C#?
public class MyNewClassMapper < EntityContainer, ModelContainer >
: BaseClassContainerMapper < EntityContainer, ModelContainer >
{
}
I have the above code in my app. Could not find the link in MSDN which explains about the class declarations shown above. Added white space around for each angle brackets to make this post readable.
Please help.
Smith
This is a generic class
MyNewClassMapperthat has generic type parametersEntityContainerandModelContainerand inherits from generic class1BaseClassContainerMapperwith these same parameters.1 Could also be an interface, though it doesn’t look like it in this case, based on name.