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
Lets have following class...
public class Array<T> : List<T> { public Array() {} public Array(IEnumerable<T> collection) : base(collection) {} public Array(params T[] items) : base(items) {} }
It would be nice to have support for such construction... new Array<int>(1, 2, 3)
new Array<int>(1, 2, 3)
Parser.ParseNew() method doesn't handle it properly. That construction can be achieved only with static method currently.
Parser.ParseNew()
The text was updated successfully, but these errors were encountered:
Added support of param arrays within constructors, in line with other…
dae025b
… method invocations. Fix dynamicexpresso#196
3abf5b1
… method invocations. (#199) Fix #196
Successfully merging a pull request may close this issue.
Lets have following class...
It would be nice to have support for such construction...
new Array<int>(1, 2, 3)
Parser.ParseNew()
method doesn't handle it properly.That construction can be achieved only with static method currently.
The text was updated successfully, but these errors were encountered: