I have the following code in VBScript:
Dim control set control = CreateObject("MSScriptControl.ScriptControl") control.language = "jscript" control.addCode("function test() { return {property: 'test'}; };") Dim result set result = control.Eval("test();")
I know that the object returned in result is of type JScriptTypeInfo , but I can not find any information regarding the definition of this type, and similar code in Visual Studio C # shows this as {System.__ComObject} in the local residents panel.
Does anyone know what an interface to JScriptTypeInfo type JScriptTypeInfo ?
javascript vbscript
user69820
source share