コード例 #1
0
    public void TestAmbiguous()
    {
        var def = new DefaultParameters();

        def.Foo(1, 2);
        def.Bar();
    }
コード例 #2
0
ファイル: Common.Tests.cs プロジェクト: zerocoolteam/CppSharp
    public void TestAmbiguous()
    {
        var def = new DefaultParameters();

        def.Foo(1, 2);
        def.Bar();
        using (Foo foo = new Foo())
        {
            Common.HasPointerParam(foo, 0);
            Common.HasPointerParam(foo);
        }
    }
コード例 #3
0
 public void TestAmbiguous()
 {
     var def = new DefaultParameters();
     def.Foo(1, 2);
     def.Bar();
 }
コード例 #4
0
ファイル: Common.Tests.cs プロジェクト: ddobrev/CppSharp
 public void TestAmbiguous()
 {
     var def = new DefaultParameters();
     def.Foo(1, 2);
     def.Bar();
     using (Foo foo = new Foo())
     {
         common.hasPointerParam(foo, 0);
         common.hasPointerParam(foo);
     }
 }