what are generics? Without generics what are the
disadvantages in 1.1?
Answer Posted / lakshmi
They are tad similar to C++ templates. With .net 1.0,
creating a flexible class or method that should use classes
that are known at compile time must be based on the object
class. With the object class, theres no type safety during
compile time. casting is necessary. Also, using the object
class for value types has a performance impact. .Net 2.0
supports generics, with generics the object class is no
longer necessary in such scenarios. Generic classes make
use of generic types that are replaced with specific types
as needed. This allows for typesafety. The
system.collections.Generic namespace gives you access to
generic versions of the stack, dictionary,
sorted dictionary, list and queue classes.
Advantages: Binary code reuse, performance, easy of
reading, typesafety.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Can you Write the GC(Garbage Collector) Algoritham in .NET? (But not Explination of Working of GC).
What are the Core features of ASP.NET MVC?
What are child actions in ASP.Net MVC?
What is work of clr?
I want to fetch data from datareader. i have three tables in datareader. i want to bind my two table with datagrid, then i want to fetch a value from my third table. do u have any idea pls help me. we use dr.nextresult() for multiple tables.
What are the versions of .net framework?
Explain peek method in tempdata in asp.net mvc?
how can you tell ef to have a different table or column name than that defined for the class?
What is disconnected scenario? : Entity framework
What are ajax helpers in mvc?
What is viewbag?
What are bundling & minification features in asp.net mvc 4?
How to answer for project questions..?
What is the advantage of mvc?
Can you explain the page life cycle of mvc?