vote up 0 vote down star

While I was trying to answer a question titled: "What are generics in asp.net" I got an orange bar at the top telling me the question is deleted and no more answers are accepted. This is annoying. it feels the same as when your m$word processor crashes in the middle of the writing. In fact, the question was neither offensive, nor off topics. I guess the guy (or girl) simply wanted to get the information from a "live" person instead of asking google about it. At work, it happened to me many times that someone asked me a question and I simply type his question in google and have him look at the results together with me. I see nothing wrong in that.

My answer was as follows:

Generics are not particularly in asp.net but in C# since version 2.0.

Generics allow you to define type-safe data structures, without committing to actual data types. This results in a significant performance boost and higher quality code, because you get to reuse data processing algorithms without duplicating type-specific code.

a great introduction can be found at http://msdn.microsoft.com/en-us/library/ms379564%28VS.80%29.aspx

yep and my answer was Generics are similar to templates in C++. It provides a way to provide functionality independent to datatype. Using generics you can provide a definition of function/class in generics and use it for any datatype you want e.g. class commonToAllDatatypes<T>{ T someFunction(){ } } now you can use this class for any datatype you want. Internally compiler will replace T with your datatype. – Xinus Sep 15 at 6:04
This kind of questions belong on meta.stackoverflow.com – voyager Sep 15 at 6:04
1  
I'm afraid you'll be disappointed by what happens to this question. I suggest you may enjoy the 'meta' forum: meta.stackoverflow.com – silky Sep 15 at 6:04

Browse other questions tagged or ask your own question.