I have dynamically created Outlook COM object:
Oleg Subachev
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