Friday 12 April 2013

What is Generic Collection in .Net


Which can store “ n” number of similar type values. This is an extension to the traditional collections. We have the classes again redefined as generic collection classes under Namespace “System.Collectons.Generic”
                        Collections                                              Generic Collectoins
                              Stack                                                             Stack<T>
                              Queue                                                           Queue<T>
                              LinkedList                                                    LInkedList<T>
                              SortedList                                                     SortedList<T>
                              ArrayList                                                       List<T>

No comments:

Post a Comment