Determining .Net method suffix number in VBScript (COM-interop)

后端 未结 2 1644
长情又很酷
长情又很酷 2020-12-07 03:37

You can use .NET methods through COM-interop in VBScript. You have to append a certain suffix number to the method since overloads don\'t cross the managed/unmanaged boundar

2条回答
  •  遥遥无期
    2020-12-07 03:54

    Since VBScript does not have support for overloaded methods, each overloaded method in a class is named uniquely using numbers appended to their name. They are numbered in the order in which they are defined in the original class. More information in my article Using .Net Interops in VBScript on ASP Free.

提交回复
热议问题