Link to home
Start Free TrialLog in
Avatar of cocosteel
cocosteel

asked on

optional Byte array parameter???

how do you declare an optional parameter that is a byte array type

ie

private function f (optional b() as byte = ??????)


end function

thanks
ASKER CERTIFIED SOLUTION
Avatar of Fahad Mukhtar
Fahad Mukhtar
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can also use mehtod overloading.. and can define two functions with the same name but different parameters:

private function f (byref b() as byte)

private function f ()