I\'m attempting to cast a System.__ComObject to an interface type using reflection. I have tried using Convert.ChangeType(Object,Type) but c# then
System.__ComObject
Convert.ChangeType(Object,Type)
For any object to be type casted you need to be sure it belongs to that particular type. You can verify thisfirst by checking using "is" operator. http://msdn.microsoft.com/en-us/library/scekt9xw%28VS.71%29.aspx