Imported Upstream version 4.2.1.91

Former-commit-id: 5bd0f48812d39b3636887951adc772b94ef2f5af
This commit is contained in:
Xamarin Public Jenkins
2015-10-30 12:42:46 -04:00
committed by Jo Shields
parent 2faab2dafa
commit f1bb32afc3
48 changed files with 211 additions and 83 deletions

View File

@@ -0,0 +1,23 @@
using System.Collections.Generic;
class A {
public A ()
{
Info = new Dictionary<string, int>();
}
public Dictionary<string, int> Info { get; set; }
}
class X
{
public static void Main ()
{
var x = new A () {
Info = {
["x"] = 1,
["y"] = 2
}
};
}
}