I'm converting a working VB Visual Studio 2003 program to Visual Studio 2005. Part of the application is CD/DVD burning with the
Nero SDK. It's a huge project/solution so, as you might imagine, I'm getting my share of compiler errors and warnings related to the conversion.
One thing I'm scratching my head at is that my declarations of my Nero objects are getting warnings of:
Type of member 'myvariablename' is not CLS compliant.
Notably, I'm seeing this on:
Code:
Public WithEvents myNeroObject As Nero = New Nero
Public WithEvents myNeroDrive As NeroDrive
From what little I understand about that particular warning, it sounds like something I'm just going to have to live with. Am I correct on that, or is there something I can do to resolve this?