Public Sub MyFunction()
Dim lowstring As String
lowstring = "hi"
Me.RichTextView.Find(lowstring, 0, 2)
End Sub
上述方法產生vb.net重載解析失敗查找/替換搜索
重載決策失敗的錯誤,因爲沒有可訪問
'Find'
可以在不縮小轉換被稱爲:
Public Function Find(characterSet() As Char, start As Integer, end As Integer) As Integer:
參數匹配參數
'characterSet'
窄s from'String'
to'1-dimensional array of Char'
。
Public Function Find(str As String, start As Integer, options As System.Windows.Forms.RichTextBoxFinds) As Integer:
參數匹配參數
'options'
變窄從'Integer'
到'System.Windows.Forms.RichTextBoxFinds'
。
如果更改替換字符串值,只有當你改變了第二或第三值比其他0
事情不會發生錯誤。
爲什麼不使用標準整數在這裏工作?這個錯誤究竟是什麼意思?任何人都可以指向我的一些文檔來處理vb.net(2010)中的重載函數?
我希望這個問題足夠集中......我剛剛對這個問題感到困惑。
感謝您的幫助 - EB
謝謝你解釋那麼清楚。 –