Monday, August 25, 2014

How to get list of properties of dynamic object ?

I have dynamically created Outlook COM object:

Type outlookType = Type.GetTypeFromProgID( "Outlook.Application" );
dynamic outlookApp = Activator.CreateInstance( outlookType );

Now I need to get properties of outlookApp object.


Is it possible ?


It seems that it does not implement IDynamicMetaObjectProvider interface.




Oleg Subachev


No comments:

Post a Comment