Suppose I have a VSA script (vbscript) that does a bunch of stuff, and
in the midst of that, it calls a method of some object
-------
Public Module Script
Sub DoStuff(ob as Bar) handles host.OnDoStuff
ob.Baz(7)
End Sub
--------
public class bar
{
public bar()
{
}
...
more >>