Found this code in one of our classes but I am not understanding what the first case statement is doing: "Case i = 1". I am sure that someone just incorrectly converted this from an IF/ELSE statement but why is VB.NET allowing this syntax. What does it mean when it is written this way?
Dim i As Integer = 1
Select Case i
Case i = 1
Return True
Case Else
Return False
End Select
BooleantoIntegerwhich will case theCase i = 1to be illegal. I've verified this in VS2010 – JaredPar Apr 6 '11 at 21:36