Multiple choice technology web technology The C# keyword int maps to which .NET type System.Int16 System.Int32 System.Int64 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.