A
Andy B.
If I have a method that takes 3 arguments:
public sub 3Parameters(ByVal one as int, ByVal two as int, ByVal three as
int)
end sub
And I need to test the 3 parameters for null (none of them can be null), how
would I throw the ArgumentNullException to deal with all 3 parameters?
public sub 3Parameters(ByVal one as int, ByVal two as int, ByVal three as
int)
end sub
And I need to test the 3 parameters for null (none of them can be null), how
would I throw the ArgumentNullException to deal with all 3 parameters?