Hi Rick,
With wwDotNetBridge, is there any way get a list of the methods and properties of an object obtained with CreateInstance()
Something like PEMSTATUS() in VFP ?
Or is this something I have to do with another too like JetBrains dotPeek ?

Yes, but it's not built in.
You can do this manually with obj.GetType()
and then parse through the Reflection types, but this is going to be very tedious from FoxPro.
From there you can dig into methods and properties and for methods into parameters etc. You'll be better off building the objects up in a small .NET module and calling that from FoxPro with all the parsed object data.
I've also built a library that does just that which I use to import types for documentation:
You should be able to call that relatively easily from FoxPro as it has a fairly straight forward interface. Used that in Help Builder and now using it Documentation Moster. Also use it Markdown Monster for displaying and editing configuration options and their documentation.
+++ Rick ---
Thanks Rick.
If you had a method in wwDotNetBridge to do it, that would be really cool. (Maybe just connect to your Westwind.TypeImporter.) And then find someone to adapt VFP's IntelliSense to show them.
Excuse my dreaming here... I'm sure you have tons of other ideas — of more important stuff you want to do.