我有一个返回数组的 javascript
var docArray = new Array(page, stamprect[0], stamprect[3], stamprect[2], stamprect[1], srot);
return docArray;
我正在尝试让 VB.Net 将其读入数组
Dim stampInfo() As Integer
stampInfo = javaScriptObj.getAllGhostStamps(CInt(pages.Item(i)) - 1)
我收到错误:
Unable to cast object of type 'System.Object[]' to type 'System.Int32[]'.
我不知道如何将其类型转换为数组。任何帮助,将不胜感激。谢谢