-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Labels
bugSomething isn't workingSomething isn't workingpriority-lowWe have considered this issue and decided that we will not be able to address it in the near future.We have considered this issue and decided that we will not be able to address it in the near future.trackedWe are tracking this work internally.We are tracking this work internally.
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!.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingpriority-lowWe have considered this issue and decided that we will not be able to address it in the near future.We have considered this issue and decided that we will not be able to address it in the near future.trackedWe are tracking this work internally.We are tracking this work internally.