I'm writing a class in .NET that returns an array of structs and calling it
from a Flash Remoting object. From the .NET side it returns an array of 8
structs, but in Flash, the data is null. Is there a problem passing structs
using remoting?
Ruslan Dobrovolsky - 19 Jan 2005 17:25 GMT
> I'm writing a class in .NET that returns an array of structs and calling it
> from a Flash Remoting object. From the .NET side it returns an array of 8
> structs, but in Flash, the data is null. Is there a problem passing structs
> using remoting?
To return array it must be somethin like this
ArrayList aList = new ArrayList();
aList.Add(something);
....
Flash.Result = aList;