In this example, I can't figure out how to set the optional parameter c
to an empty List(Of thing)
:
Sub abcd(a as something, b as something, optional c as List(Of thing) = ?? )
' *stuff*
End Sub
I considered setting c
to null
, but that seems like a bad thing to do.
You can't. Optional values have to be compile-time constants. The only compile-time constant you can assign to
List(Of T)
isNothing
.What you can do is overload that method with one that omits the
List(Of T)
parameter. This overload can then pass an emptyList(Of T)
to the original method: