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
I'm not sure if I'm doing something crazy but I have this code
.AddConstructor(Accessibility.Public).WithBaseCall(new Dictionary<string, string>() { ["IPage"] = "page", ["string"] = "absolutePath", ["string"] = "elementPath", })
which will result in
public FooBar(IPage page, string elementPath) : base(page, elementPath) { Page = page; }
because Dictionary is used the third param will overwrite the second. How can I add two params of same type?
The text was updated successfully, but these errors were encountered:
I'd say this seems like an oversight and a bug.
Sorry, something went wrong.
i made this PR #54
No branches or pull requests
I'm not sure if I'm doing something crazy but I have this code
which will result in
because Dictionary is used the third param will overwrite the second. How can I add two params of same type?
The text was updated successfully, but these errors were encountered: