You should be able to use System.Reflection to do the following:
MethodInfo info = obj.GetType().GetMethod(...);
using the BindingFlags.Static qualifier in GetMethod (and Public if you want
to constrain even further). Then you can use info.Invoke to invoke the
method (passing null as the first parameter in invoke since it is a Static
method).
Mike
> Please advise me on how to interop the static (public) methods, fields,
> properties etc. from C# to VB6. Pointers to any links are greatly appreciated.