Part 12 Difference between int and Int32 in c#

Link for all dot net and sql server video tutorial playlists Link for slides, code samples and text version of the video This is a very basic and a common c# interview question. Int32 and int are synonymous, both of them allow us to create a 32 bit integer. int is shorthand notation (alias) for Int32. When declaring an integer in a c# program most of us prefer using
Back to Top