linux-packaging-mono/mcs/tests/gtest-anontype-08.cs

11 lines
149 B
C#
Raw Normal View History

using System;
static class Test
{
public static void Main ()
{
var a = new { X = 1, Y = 2, };
Console.WriteLine(a);
}
}