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
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.