コード例 #1
0
ファイル: IndexerTest.cs プロジェクト: layomia/dotnet_runtime
        public static void IndexerTest_RunTest()
        {
            dynamic d = new IndexerTest();
            int     x = d[d : new object()];

            Assert.Equal(2, x);
        }
コード例 #2
0
ファイル: IndexerTest.cs プロジェクト: Rayislandstyle/corefx
        public static void IndexerTest_RunTest()
        {
            dynamic d = new IndexerTest();
            int x = d[d: new object()];

            Assert.Equal(2, x);
        }