hi people,
Is it possible not to assign value to any paramenter/method signatures on a function?
I have some ex. here.
Can i use the function test without passing the three parameters like, Test("qqqq",,"CCCC") ?
I don't want want to use "optional" on the signature because i want those parameters as nullable
Is there a way i could do that?
Thanks
Is it possible not to assign value to any paramenter/method signatures on a function?
I have some ex. here.
Code:
public function Test ( byval a as string, byval b as string, byval c as string)
dim z,x,y as string
z = a
x = b
z = c
end funcion
Can i use the function test without passing the three parameters like, Test("qqqq",,"CCCC") ?
I don't want want to use "optional" on the signature because i want those parameters as nullable
Is there a way i could do that?
Thanks