7
Reply

Collections and Generics in .net?

Renjith V S

Renjith V S

Mar 27, 2014
6.1k
0

    http://www.dotnet-tricks.com/Tutorial/csharp/U08E301212-Difference-between-Generics-and-Collections-with-example.html

    Kml Surani
    April 15, 2015
    0

    http://www.c-sharpcorner.com/UploadFile/deveshomar/basic-of-generic-class-in-C-Sharp/

    Nitin Choudhary
    January 20, 2015
    0

    In simple terms - Collections can hold elements of any data types e.g. ArrayList Generics can hold elements of a specific data types e.g. List, where T stands for the data type.You might need to type cast while accessing the elements in the ArrayList while it is not the case for Collections.

    Bhushan Gawale
    January 19, 2015
    0

    collections support for stacks, queues, lists, array list and hash tables. Generics allow you can work with any data type. You can create your own generic interfaces, classes, methods, events and delegates.

    Sneha Panda
    December 15, 2014
    0

    Generics: http://www.c-sharpcorner.com/UploadFile/deveshomar/basic-of-generic-class-in-C-Sharp/

    Devesh Omar
    June 05, 2014
    0

    generics allows you to work with any data type Collections are collection of arraylist

    Mahesh Kumar alanka
    April 26, 2014
    0

    For collection.. http://www.tutorialspoint.com/csharp/csharp_collections.html and for generics http://www.tutorialspoint.com/csharp/csharp_generics.htm

    Munesh Sharma
    April 04, 2014
    0