我已经使用工具将 ac# 程序转换为 vb.net 该程序在 c# 中运行良好
在VB我得到这个错误
Public member 'get_SymbolList' on type 'ConnectionControlClass' not found."}
在这条线上
oList = axTradeIdeasWindowX1.Connection.get_SymbolList(CType(i,Integer))
在 C#
这条线工作正常
oList = axTradeIdeasWindowX1.Connection.get_SymbolList(CType(i,Integer))
任何想法可能是什么问题。我检查了程序列表中的每一行,遍历了 Objects could not find get_SymbolList
only foundSymbolList
是否get_
是 C# 构造以及是否有 vb.net 等价物