此前,我在“NET Framework 3.5”上使用了这个词,并做了以下工作:
If (New String() {"ER", "PM", "EM", "OC"}).Contains(Session("Position")) Then
Some codes
End If
现在,我正在实施一项与2.0网相联的项目,而上述准则并不奏效。
Contains is not a member of System.Array .
我如何能够在不从2.0向3.0迁移的情况下实现上述准则? 任何替代品?