为什么大括号都用了begin和end,光找这两个单词都看昏了。连for和while的大括号都要用单词,我找了个转化软件,但是转了以后更乱。。。
昨天才知道原来asp用VB来写com,怪不得grief会精通asp。。。
不过说实在,是我太笨还是VB代码太乱?表达式连分号都不用。
Dim GenreArray() As String
GenreArray = Split(sGenreMatrix, "|")
Dim I As Integer
'MessageBox.Show(UBound(GenreArray))
For I = LBound(GenreArray) To UBound(GenreArray)
cboTCON.Items.Add(GenreArray(I))
Next I
cboTCON.SelectedIndex = 12
这句是什么意思???那个Split函数在C#代码怎么写???!