请问,我在VB中定义了一个Function,如:
public Function  MyTest(byval strA AS String,byval strB AS String, byval strC AS String)
    (.....)
End Function
 我在调用MyTest时有时只想用前两个参数.如 MyTest("The a string","The b string"),但在编译时就出错误,请问如何解决.