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
Howmany five tracing levels in System.Diagnostics.TraceSwitcher? Why they are using?
How many kinds of elements an array can have?
Explain Direct CAST vs CType ?
To allow an element to be accessed using a unique key which .NET collection class is used ?
Is string primitive?
Is multiple inheritance possible in c#?
What is JIT (just in time)? how it works?
Why is main static in c#?
How can i Spawn a Thread
Define acid rule of thumb for transactions in c#.
Can a struct be null?
What is attribute and reflection in c#?
How long does it take to learn c# programming?
Is there regular expression (regex) support available to c# developers?
What is the advantage of constructor in c#?