Click here to Skip to main content
Licence CPOL
First Posted 6 Oct 2007
Views 66,038
Downloads 1,142
Bookmarked 24 times

Sample ASP.Net Application for Generics

By | 12 Oct 2007 | Article
A simple Application in ASP.Net to demonstrates the use of Generics

Introduction

Generics are a new feature in version 2.0 of the C# language and the common language runtime (CLR)

When you use generics, you are creating classes or methods that use a generic type, rather than a specific type. For example, rather than creating a type-specific, you could create a reusable List class using generics.

How is that different from the ArrayList class?

The System.Collection.ArrayList can be used with any objectn, but no type checking is done when objects are passed to methods. You have to manually cast objects back to our type when retrieving; which makes the code harder.

Using the code

I have a Strongly Typed Class named "StudentList" and Generics Class named "MyCustomList<T>" and a sample class named "Student".

"StudentList" class can accepts only Type of Student Objects for its Methods.

But "MyCustomList<T>" Class can Accept any Type u specifying in "T"

Consider the class Student

/// <summary>
/// Student Class
/// </summary>
public class Student
{
    private string fname;
    private string lname;
    private int age;

    /// <summary>
    /// First Name Of The Student
    /// </summary>
    public string FirstName
    {
        get { return fname; }
        set { fname = value; }
    }
    /// <summary>
    /// Last Name Of The Student
    /// </summary>
    public string LastName
    {
        get { return lname; }
        set { lname = value; }
    }
    /// <summary>
    /// Age of The Student
    /// </summary>
    public int Age
    {
        get { return age; }
        set { age = value; }
    }

    /// <summary>
    /// Creates new Instance Of Student
    /// </summary>
    /// <param name="fname">FirstName</param>
    /// <param name="lname">LastName</param>
    /// <param name="age">Age</param>
    public Student(string fname, string lname, int age)
    {
        FirstName = fname;
        LastName = lname;
        Age = age;
    }

}

For "StudentList" and "MyCustomList<T>" classes see the code attached.

We can use StudentList like..

        Student dhas = new Student("Manick", "Dhas", 22);
        Student raj = new Student("Sundar", "Raj", 32);

        ///Using a custom strongly typed StudentList
        StudentList mc = new StudentList();
        mc.Add(dhas);
        mc.Add(raj);

        Response.Write("<B><U>Using a custom strongly typed StudentList</B></U><BR>");
        foreach (Student s in mc)
        {
            Response.Write("First Name : " + s.FirstName + "<BR>");
            Response.Write("Last Name : " + s.LastName + "<BR>");
            Response.Write("Age : " + s.Age + "<BR><BR>");
        } 

We can use MyCustomList<T> like..

        ///Creating a list of Student objects using my custom generics
        MyCustomList<Student> student = new MyCustomList<Student>();
        student.Add(dhas);
        student.Add(raj);

        Response.Write("<BR><B><U>Using a list of Student objects using my custom generics</B></U><BR>");
        foreach (Student s in student)
        {
            Response.Write("First Name : " + s.FirstName + "<BR>");
            Response.Write("Last Name : " + s.LastName + "<BR>");
            Response.Write("Age : " + s.Age + "<BR><BR>");
        }
        
        ///Creating a list of Student objects using my custom generics
        MyCustomList<int> intlist = new MyCustomList<int>();
        intlist.Add(1);
        intlist.Add(2);

        Response.Write("<BR><B><U>Using a list of String values using my custom generics</B></U><BR>");
        foreach (int i in intlist)
        {
            Response.Write("Index : " + i.ToString() + "<BR>");
        }

        ///Creating a list of Student objects using my custom generics
        MyCustomList<string> strlist = new MyCustomList<string>();
        strlist.Add("One");
        strlist.Add("Two");

        Response.Write("<BR><B><U>Using a list of int values using my custom generics</B></U><BR>");
        foreach (string str in strlist)
        {
            Response.Write("Index : " + str + "<BR>");
        } 

Output:

Using a custom strongly typed StudentList
First Name : Manick
Last Name : Dhas
Age : 22

First Name : Sundar
Last Name : Raj
Age : 32


Using a list of Student objects using my custom generics
First Name : Manick
Last Name : Dhas
Age : 22

First Name : Sundar
Last Name : Raj
Age : 32


Using a list of String values using my custom generics
Index : 1
Index : 2

Using a list of int values using my custom generics
Index : One
Index : Two

Generics aim to promote:

Binary code reuse,

Performance,

Ease of reading,

Type safety.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Ra...aj

Web Developer

India India

Member

Chennai

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberPrasanta_Prince21:25 25 Apr '12  
GeneralMy vote of 3 Pinmemberrahul_dadge21:44 5 Jul '10  
GeneralGreat Pinmemberwhite16521:09 28 Jun '09  
GeneralEasy 2 Learn PinmemberMilton_win18:40 20 May '09  
GeneralGreat Article PinmembervbUser20061:10 14 Oct '07  
GeneralBrilliant! PinmemberDimitrios Kalemis7:42 11 Oct '07  
GeneralRe: Brilliant! PinmemberRa...aj17:28 11 Oct '07  
GeneralI have a dream... PinmemberMitri8:32 9 Oct '07  
AnswerRe: I have a dream... Pinmemberrastadiva20:54 9 Oct '07  
GeneralRe: I have a dream... PinmemberMagnus Salgo22:15 14 Oct '07  
GeneralRe: I have a dream... PinmemberEarl Suminda12:47 15 Oct '07  
This is a such a good article. He has done a great job. Lot of dev people can't understand how to use generic type.Mad | :mad:
 
suminda

GeneralRe: I have a dream... PinmemberBabuChellathurai17:38 16 Oct '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 12 Oct 2007
Article Copyright 2007 by Ra...aj
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid