コード例 #1
0
ファイル: TestInterface.cs プロジェクト: Xtremrules/dot42
 public void testExtExplicitImplementation2()
 {
     IExtSimpleInterface x = new ExtExplicitImplementation();
     AssertEquals(x.FooInt(), 1);
 }
コード例 #2
0
ファイル: TestInterface.cs プロジェクト: Xtremrules/dot42
 public void testExtExplicitImplementation1()
 {
     ISimpleInterface x = new ExtExplicitImplementation();
     x.Foo();
     AssertTrue(true);
 }