5,401,186 members and growing! (18,629 online)
Email Password   helpLost your password?
Languages » C# » General     Intermediate

Generics in C# 2.0

By Ansil

An introduction to Generics in C#.
C#, Windows, .NET 2.0, .NETVisual Studio, VS2005, Dev

Posted: 23 Sep 2004
Updated: 23 Sep 2004
Views: 55,347
Bookmarked: 19 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
27 votes for this Article.
Popularity: 3.46 Rating: 2.42 out of 5
10 votes, 37.0%
1
6 votes, 22.2%
2
2 votes, 7.4%
3
3 votes, 11.1%
4
6 votes, 22.2%
5

Introduction

We are going to take a look at a new cool feature of C# 2.0. It is not constrained to C# but also available with other .NET languages.

As the projects get more complicated, programmers increasingly need a means to better reuse and customize their existing component-based software. To achieve such a high level of code reuse in other languages, programmers typically employ a feature called Generics. Using Generics, we can create class templates that support any type. When we instantiate that class, we specify the type we want to use, and from that point on, our object is "locked in" to the type we chose.

Let us look at an example of how we can create a generic class using C# 2.0.

public class MyCustomList<MYTYPE> 
{
  private ArrayList m_list = new ArrayList(); 
  public int Add(myType value)
  {
    return m_list.Add(value);
  } 

  public void Remove(myType value)
  {
    m_list.Remove(value);
  } 

  public myType this[int index]
  {
    get
    {
      return (myType)m_list[index];
    }
    set
    {
      m_list[index] = value;
    }
  }
}

Here, MyCustomList is built on an ArrayList. But its methods and indexer are strongly typed. Here <myType> is really just a placeholder for whatever type you choose when you create the class. This placeholder is defined in angled brackets after the name of the class. Now, let us look at how to create an instance of the class MyCustomList:

MyCustomList<int> list = new MyCustomList<int>();
// Add two integers to list
list.Add(1);
list.Add(33);
// The next statement will fail and wont compile

list.Add("Emp");

If we want our MyCustomList to store strings, it can be done as follows:

MyCustomList<string> list = new MyCustomList<string>();

We can have multiple types in our base template class. Just separate each type with a comma in between the angular brackets.

public class MySecondCustomList<myType,mySecondType>
{...}

So far so good.

Constraints

Now, we will look at applying constraints by which we can restrict what types are allowed. For e.g., if we want to restrict our type to only the types implementing IDisposable interface, we can do it as follows:

public class MyCustomList<myType>
  where myType : IDisposable
{ ... }

If there are more than one constraints, we can separate it by commas. E.g.:

public class MyDictionary<KeyType, ValType> where
KeyType : IComparable,
KeyType : IEnumerable

Generics are not limited to classes. They can also be used in structures, interfaces, and delegates. We can even use generics to parameterize a method by type. E.g.:

public myType MyGenericFunction<myType>(myType item)
{
  ........
  return item;
}

Conclusion

In general, Generics allow programmers to author, test, and deploy code once, and then reuse that code for a variety of different data types. In addition, generics are checked at compile-time. When your program instantiates a generic class with a supplied type parameter, the type parameter can only be of the type your program specified in the class definition.

History

Version 1.0

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Ansil


Ansil hails from Trivandrum.
He works for Microsoft india (R&D ).



"First they ignore you;then they laugh at you ;then they fight you ;then you win "
Occupation: Web Developer
Location: India India

Other popular C# articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 4 of 4 (Total in Forum: 4) (Refresh)FirstPrevNext
Subject  Author Date 
Generaltype o?memberPhillip Holmes3:55 8 Sep '06  
GeneralThe list (in System.Collections.Generic) already does it!memberEvandrojr10:43 5 Nov '04  
GeneralIncorrect commentprotectorHeath Stewart6:29 23 Sep '04  
GeneralRe: Incorrect commentmemberAnsil18:38 23 Sep '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 23 Sep 2004
Editor: Smitha Vijayan
Copyright 2004 by Ansil
Everything else Copyright © CodeProject, 1999-2008
Web12 | Advertise on the Code Project