We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a14c4bc commit 3196fbcCopy full SHA for 3196fbc
samples/snippets/csharp/VS_Snippets_CLR_System/system.object.gettype/cs/GetTypeEx2.cs
@@ -16,7 +16,7 @@ public static void Main()
16
else if (t.Equals(typeof(int)))
17
Console.WriteLine("{0} is a 32-bit integer.", value);
18
else if (t.Equals(typeof(long)))
19
- Console.WriteLine("{0} is a 32-bit integer.", value);
+ Console.WriteLine("{0} is a 64-bit integer.", value);
20
else if (t.Equals(typeof(double)))
21
Console.WriteLine("{0} is a double-precision floating point.",
22
value);
0 commit comments