次のコードが機能しないのはなぜですか?
Private Function resolveSiteName(ByVal plantName As String, ByVal siteName As String) As Integer
Dim siteId As Integer = Nothing
Dim fullName As String = plantName & siteName
Select Case fullName
Case fullName.Contains("Example" And "Example2" And "Example3")
siteId = 0
End Select
Return siteId
End Function
デバッグSelect Case fullName
時に条件が満たされ、siteId
.
私もこれだけやってみた
Case fullName.Equals("Exactly what full name is")
それが機能するかどうかをテストするためだけに...それでも割り当て部分をスキップしました。
ここで何が欠けていますか?