what is the difference between int and Int32?
Answer Posted / nihar
Int32 is the System.Int32 class, while int is an alias for
System.Int32.
The same applies for String (uppercase S) which is
System.String, while string (lowercase S) is an alias for
System.String.
So basically int is the same thing as Int32, and string is
the same thing as Int32
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
What does return do in for loop?
Define satellite Assembly?
In which way a two-dimensional array declared in C#?
What is yield break in c#?
How to override a function in c#?
Enlist all the components of an ado.net framework?
What is the use of static in c#?
Explain the different types of delegates used in c#.
What is unrecognized escape sequence in c#?
What are satellite assemblies? How will you get the different language strings?
What is array class in c#?
Is arraylist generic in c#?
How is a string immutable?
What is a lambda expression in c#?
What is the keyword used to prevent a class from being inherited by another class?