C
Chad
Why am I getting the following warning? Note the example is complete. Both projects were created as Class Libraries.
Note that adding a Public Sub in RpClass1 does not remove the error.
Warning 3 'DalTest' is not CLS-compliant because it derives from 'RpClass1', which is not CLS-compliant. C:\MyDocs\vss\CollectDotNet\DataAccess\DalTest.vb 3 14 DataAccessLayer
'In DataAccessLayer project which references the RP project:
Public Class DalTest
Inherits RP.RpClass1 'that's it!
End Class
'In RP Project:
Public Class RpClass1
'No code at all!
End Class
Note that adding a Public Sub in RpClass1 does not remove the error.
Warning 3 'DalTest' is not CLS-compliant because it derives from 'RpClass1', which is not CLS-compliant. C:\MyDocs\vss\CollectDotNet\DataAccess\DalTest.vb 3 14 DataAccessLayer
'In DataAccessLayer project which references the RP project:
Public Class DalTest
Inherits RP.RpClass1 'that's it!
End Class
'In RP Project:
Public Class RpClass1
'No code at all!
End Class