Tagged Questions
2
votes
1answer
139 views
Why is my function not CLS-compliant?
I'm getting the following warning message...
Return type of function 'ConnectionNew' is not CLS-compliant.
...for this function:
Public Function ConnectionNew(ByVal DataBaseName As String) As ...
1
vote
4answers
708 views
LINQ to SQL Classes not CLS-Compliant?
I'm using LINQ to SQL as my data access layer for a new project. I have added my database tables to the designer and all is well.
Whenever I use one of these classes in a function, Visual Studio ...
0
votes
1answer
267 views
CLS-Compliant issue
I have the following property defined. MyLibrary.PumpSignal is an enum as follows:
Public Enum PumpSignal As Integer
PumpOff = 0
PumpOn = 1
End Enum
Then I have another class with a ...