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
interface I1 {} interface I2 {} interface I3 : I2 {} class C : I1, I3 {} var c = Reflect.Type<C>(); Debug.Assert(c.Interfaces.Size() == 3);
The text was updated successfully, but these errors were encountered:
関連項目として、実装すべきメソッドの取得も今後やりたい。
interface I { void M1(); void M2(); } abstract class A : I { public void M1() {} public abstract void M2(); } class C : A { ... } var c = Reflect.Type<C>(); Debug.Assert(c.AbstractMethods.Size() == 1);
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: