Click here to Skip to main content
Click here to Skip to main content

Using Data Type Alias in .Net

By , 30 Oct 2008
 

Introduction

Data type aliasing allows us to use an alias of a data type instead of actual data type name.

For example if we want to use System.Int32 in our code but we may want to change it to Int64 or Int16 in future. So instead of using Int32 in our code and then replacing the whole code with Int64 later, what we can do is, we can declare an alias for Int32 and use it, later on when we want to use Int64 we can just change the alias declaration and its done.

Using in code

//C#:
using MyType = System.Int32; //define alias MyType for System.Int32

//Now we can use the alias MyType anywhere in our code instead of actual System.In32 like below
MyType myNumber=12; 
Console.WriteLine(myNumber.ToString()); 
//If we want to change to System.Int64, We will simply change the alias, that’s it.
using MyType = System.Int64; 
'To declare alias in VB.net:
Imports MyType=System.Int32 'defines alias for System.Int32

Points of Interest

This is really cool to use when another team is working on some class who’s' final name we don't know, so for the time we can create a dummy class and use an alias throughout the code and later we can replace the alias declaration with actual class name.

License

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

About the Author

Bhupindra Singh
India India
Member
I started programming for fun when I was in Higher Secondary (1995). It was a table writing program in C..haah!! those were the best days of my life Smile | :)
 
But now it has brought me to no. of jobs in roles of developer, Lead, Architect, Coach and Consultant....
 
.Net c# is my passion specially when it comes to build api and frameworks to facilitates development teams....
 
I always learned things by example, now its a pleasure and responsiblity to give learnings back to next generation of coders.

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1memberTrif_cz9 Oct '12 - 0:52 
GeneralOnly class scope and not a .NET featuremembermot25630 Oct '08 - 22:30 
GeneralRe: Only class scope and not a .NET featurememberkobi systems30 Oct '08 - 23:33 
GeneralRe: Only class scope and not a .NET featurememberPIEBALDconsult31 Oct '08 - 9:50 
GeneralRe: Only class scope and not a .NET featurememberkobi systems1 Nov '08 - 3:33 
GeneralRe: Only class scope and not a .NET featurememberPIEBALDconsult1 Nov '08 - 4:25 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 31 Oct 2008
Article Copyright 2008 by Bhupindra Singh
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid