what is the difference between int and Int32?
Answer Posted / vijay
Basically int is the short form of Int32.
The important difference is
"int" is a C# language keyword that implies nothing about
the underlying structure of the data where as "Int32" is a
CLR class named explicitly to indicate a 32-bit structure.
| Is This Answer Correct ? | 43 Yes | 10 No |
Post New Answer View All Answers
What is method in c#?
Why do we need generics?
What is foreach loop in c#?
What do you understand by the terms datareader object and dataset object?
What are the differences between a class and a struct?
How can we set class to be inherited, but prevent the method from being over-ridden?
What is the difference between array and list in c#?
What Is The Difference Between The System.array.copyto() And System.array.clone()?
Why do we still see so much non-oo code written in c# today?
Which of these string definitions will prevent escaping on backslashes in c#?
Why do you call it a process? What’s different between process and application in .net, not common computer usage, terminology?
Is post back in c#?
Define strong name in c#?
Is array thread safe c#?
Why do we need delegates?