Multiple choice technology web technology

The C# keyword int maps to which .NET type

  1. System.Int16

  2. System.Int32

  3. System.Int64

  4. System.Int8

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The C# keyword int is an alias for System.Int32, a 32-bit signed integer. Int16 is short, Int64 is long, and there is no Int8 type in .NET. This is a duplicate of question 129373.