Skip to content

Commit 3196fbc

Browse files
authored
Update GetTypeEx2.cs (#5424)
Fix #5414.
1 parent a14c4bc commit 3196fbc

File tree

1 file changed

+1
-1
lines changed
  • samples/snippets/csharp/VS_Snippets_CLR_System/system.object.gettype/cs

1 file changed

+1
-1
lines changed

samples/snippets/csharp/VS_Snippets_CLR_System/system.object.gettype/cs/GetTypeEx2.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static void Main()
1616
else if (t.Equals(typeof(int)))
1717
Console.WriteLine("{0} is a 32-bit integer.", value);
1818
else if (t.Equals(typeof(long)))
19-
Console.WriteLine("{0} is a 32-bit integer.", value);
19+
Console.WriteLine("{0} is a 64-bit integer.", value);
2020
else if (t.Equals(typeof(double)))
2121
Console.WriteLine("{0} is a double-precision floating point.",
2222
value);

0 commit comments

Comments
 (0)