我怎样才能有一个 sub 接受一个变量作为 byref 而不声明它是什么类型的变量(它可能是 int、string 等)但仍然定义了一些其他参数?
我想要一个这样的子:
Private Sub example(ByRef variable, ByRef reader as MySqlDataReader, ByVal columnName as String)
我怎样才能有一个 sub 接受一个变量作为 byref 而不声明它是什么类型的变量(它可能是 int、string 等)但仍然定义了一些其他参数?
我想要一个这样的子:
Private Sub example(ByRef variable, ByRef reader as MySqlDataReader, ByVal columnName as String)