I'm trying to remove a bunch of warnings from an old system and one of them is this:
'System.Runtime.InteropServices.UCOMIEnumMoniker' is obsolete: 'Use System.Runtime.InteropServices.ComTypes.IEnumMoniker instead. http://go.microsoft.com/fwlink/?linkid=14202'
There are similar warnings for other UCOM classes in System.Runtime.InteropServices
. The warning is actually fairly clear on what to do, and I really want to follow the advice that it is giving. I would be perfectly comfortable doing just that if they just renamed the classes (removed the 'UCOM' part) and moved them into the ComTypes
namespace. But I don't know if that's what they did, so I'm asking you, because if anything happened to really change those classes, I'm not very comfortable to just use the new ones instead, since I have no real way to extensively test any changes (which is a whole other problem that I don't really want to get into now).
So, does anyone know if there is a real difference between these old and new classes?
Thanks!