N
Nigel V Thomas
Hi
I've always use the following code.
Dim Sz as new Size
Sz.Width=10
Sz.Height=10
call SomeRoutine (Sz)
However, I see you can use:
call SomeRoutine (new Sz(10,10))
which seems a real shortcut.
Is it safe? Overheads? bad style?
Comments pls
Nigel
I've always use the following code.
Dim Sz as new Size
Sz.Width=10
Sz.Height=10
call SomeRoutine (Sz)
However, I see you can use:
call SomeRoutine (new Sz(10,10))
which seems a real shortcut.
Is it safe? Overheads? bad style?
Comments pls
Nigel