Variant param values from classic asp calling .NET component method
See the question and my original answer on StackOverflowThe code you post should work as in VBScript
VarType(Array(...)) = VarType(myFiles) = VarType(Split(...)) = 8204
8204 = 0x200C, which is VT_ARRAY | VT_VARIANT which translate indeed to object[] in .NET
So, the actual code is different than the sample shown here.