[runtime] Unit test for Xamarin-47560
[mono.git] / mono / tests / reflection-enum.cs
index e4496eaa11f0c9f05c77bcc9e552a4709e25f0d8..10f9050dc8c27edb598cc265de684cb93e92781f 100644 (file)
@@ -21,7 +21,7 @@ namespace Test {
                        if (verbose != 0) {
                                Console.WriteLine ("Enum "+t.Name);
                                for (i = 0; i < names.Length; ++i) {
-                                       Console.WriteLine (names [i] + " = " + ((int)values.GetValue(i)).ToString());
+                                       Console.WriteLine ("{0} = {1} (ToString: {2})", names [i], ((int)values.GetValue(i)).ToString(), values.GetValue(i));
                                }
                        }
                        if (name == defaultn) {