Hi everyone..in .net 2.0 we do programming in a very smarter way Generics is the example like if we are using minimum finction to find minimum between two numbers they may be integer,string,object and may be some other data types.Consider the following code :-Returns minimum between two integers.int Min( int a, int b ){if (a < b) return a;else return...