hi! Does Exit Sub in VB6 has equivalent to C#.net?
Printable View
hi! Does Exit Sub in VB6 has equivalent to C#.net?
In all C-based languages you simply use "return". If the type of the method is "void" then you don't provide a return value.
thanks a bunch!!