We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invoking inner class constructor from method belonging to second inner class does not convert correctly to C#.
Java:
public class A { public class B { } public class C { B b; C() { b = new B(); } } }
C# conversion of class C:
public class A_0024C: object { public A _o; public A_0024B b_f; public A_0024C(A _o):base() { this._o = _o; this.b_f = new A_0024B(this); } }
That is, C invokes constructor of B replacing A with itself.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Invoking inner class constructor from method belonging to second inner class does not convert correctly to C#.
Java:
C# conversion of class C:
That is, C invokes constructor of B replacing A with itself.
The text was updated successfully, but these errors were encountered: