MicrosoftEdge / MicrosoftEdge/WebView2Feedback
Host Object returning multidimensional array with null.
Open
@lflores-ms is already working on this.
Since Feb 4, 2023.
bug
priority-low
tracked
- Dominant language
- PowerShell
- Stars
- 526
- Forks
- 67
- PR merge metrics
- No merged PRs in 30d
Description
Hello everyone, when I used hostobject what return:
public object[] Foo()
{
return new object[] { 1, 2, "foo", true, false}
}
In Javascript I receive:
[1, 2, "foo", true, false]
But when I call a method like this:
public object[] Foo2()
{
return new object[] { 1, 2, "foo", true, false, new object[] { 5, 6, "foo" } }
}
In Javascript I receive:
[1, 2, "foo", true, false, [null, null, null] ]
is that a hostobject limitation?
Thanks!.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.