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
Describe the solution you'd like In dySpy, no arg method will generated code object[] a = new object[0];, I think it can be replaced to Array.Empty
object[] a = new object[0];
Describe alternatives you've considered
[Cache] [DebuggerStepThrough] private void Go() { object[] a = new object[0]; this.__a$_around_Go_100663300_w_0(a); }
to
[Cache] [DebuggerStepThrough] private void Go() { object[] a = Array.Empty<object>(); this.__a$_around_Go_100663300_w_0(a); }
Additional context No
The text was updated successfully, but these errors were encountered:
Good point. Will try to add to next release
Sorry, something went wrong.
pamidur
No branches or pull requests
Describe the solution you'd like
In dySpy, no arg method will generated code
object[] a = new object[0];
, I think it can be replaced to Array.EmptyDescribe alternatives you've considered
to
Additional context
No
The text was updated successfully, but these errors were encountered: