Click here to Skip to main content
15,887,175 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
is system.int32 wil work in c#.plzz giv me answer with detailed explanation
Posted

As C# is a case sensitive language you would have to use System.Int32.

But, what do you mean by "will it work"? Will it work for what? Please clarify the question.
 
Share this answer
 
The int intrinsic type in C# is a synonym for System.Int32. This means they are treated exactly the same by the C# compiler, which emits the same IL in both cases.

So, yes: System.Int32 will work in C#.

Nick
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900