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
