Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels