bac3554225
Former-commit-id: b6ad0994c58eaf044e2599fe2ff7996e073c87d2
23 lines
277 B
C#
23 lines
277 B
C#
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
|
|
}
|
|
};
|
|
}
|
|
} |