InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.NetMiscellaneous Feature ASP.NET Scripting Visual Basic .NET TOCVB .NET Language ReferencenaVB.Net ElementsVB.NET Operators StatementComment StatementsAssignment StatementsDeclaration StatementsContol Flow Statements Draft for Information Only
Content
VB.NET Transfer Control Statements
VB.NET Transfer Control StatementsThe supporting VB.NET Transfer Control Statements are Call, Continue, Exit, GoTo, Resume, Return, With Call StatementTransfers control to a Function, Sub, or dynamic-link library (DLL) procedure. Syntax[ Call ] procedureName [ (argumentList) ] Parts
RemarksYou can use the Call keyword when you call a procedure. For most procedure calls, you aren’t required to use this keyword. You typically use the Call keyword when the called expression doesn’t start with an identifier. Use of the Call keyword for other uses isn’t recommended. If the procedure returns a value, the Call statement discards it. See alsoContinue StatementTransfers control immediately to the next iteration of a loop. SyntaxContinue { Do | For | While } RemarksYou can transfer from inside a Do, For, or While loop to the next iteration of that loop. Control passes immediately to the loop condition test, which is equivalent to transferring to the For or While statement, or to the Do or Loop statement that contains the Until or While clause. You can use Continue at any location in the loop that allows transfers. The rules allowing transfer of control are the same as with the GoTo Statement. For example, if a loop is totally contained within a Try block, a Catch block, or a Finally block, you can use Continue to transfer out of the loop. If, on the other hand, the Try...End Try structure is contained within the loop, you cannot use Continue to transfer control out of the Finally block, and you can use it to transfer out of a Try or Catch block only if you transfer completely out of the Try...End Try structure. If you have nested loops of the same type, for example a Do loop within another Do loop, a Continue Do statement skips to the next iteration of the innermost Do loop that contains it. You cannot use Continue to skip to the next iteration of a containing loop of the same type. If you have nested loops of different types, for example a Do loop within a For loop, you can skip to the next iteration of either loop by using either Continue Do or Continue For. See also
Exit StatementExits a procedure or block and transfers control immediately to the statement following the procedure call or the block definition. SyntaxExit { Do | For | Function | Property | Select | Sub | Try | While } Statements
Exit Do
Exit For
Exit Function To specify a return value, you can assign the value to the function name on a line before the Exit Function statement. To assign the return value and exit the function in one statement, you can instead use the Return Statement.
Exit Property To specify a return value in a Get procedure, you can assign the value to the function name on a line before the Exit Property statement. To assign the return value and exit the Get procedure in one statement, you can instead use the Return statement. In a Set procedure, the Exit Property statement is equivalent to the Return statement.
Exit Select
Exit Sub In a Sub procedure, the Exit Sub statement is equivalent to the Return statement.
Exit Try
Exit While RemarksDo not confuse Exit statements with End statements. Exit does not define the end of a statement. See also
GoTo StatementBranches unconditionally to a specified line in a procedure. SyntaxGoTo line Part
line RemarksThe GoTo statement can branch only to lines in the procedure in which it appears. The line must have a line label that GoTo can refer to. For more information, see How to: Label Statements. Note GoTo statements can make code difficult to read and maintain. Whenever possible, use a control structure instead. For more information, see Control Flow. You cannot use a GoTo statement to branch from outside a For...Next, For Each...Next, SyncLock...End SyncLock, Try...Catch...Finally, With...End With, or Using...End Using construction to a label inside. Branching and Try ConstructionsWithin a Try...Catch...Finally construction, the following rules apply to branching with the GoTo statement.
1 If one Try...Catch...Finally construction is nested within another, a Catch block can branch into the Try block at its own nesting level, but not into any other Try block. A nested Try...Catch...Finally construction must be contained completely in a Try or Catch block of the construction within which it is nested. The following illustration shows one Try construction nested within another. Various branches among the blocks of the two constructions are indicated as valid or invalid.
See also
Resume StatementResumes execution after an error-handling routine is finished. We suggest that you use structured exception handling in your code whenever possible, rather than using unstructured exception handling and the On Error and Resume statements. For more information, see Try...Catch...Finally Statement. SyntaxResume [ Next | line ] Parts
Resume
Next
line RemarksNote We recommend that you use structured exception handling in your code whenever possible, rather than using unstructured exception handling and the On Error and Resume statements. For more information, see Try...Catch...Finally Statement. If you use a Resume statement anywhere other than in an error-handling routine, an error occurs. The Resume statement cannot be used in any procedure that contains a Try...Catch...Finally statement. RequirementsNamespace: Microsoft.VisualBasic Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll) See alsoReturn StatementReturns control to the code that called a Function, Sub, Get, Set, or Operator procedure. SyntaxReturn -or- Return expression Part
expression RemarksIn a Sub or Set procedure, the Return statement is equivalent to an Exit Sub or Exit Property statement, and expression must not be supplied. In a Function, Get, or Operator procedure, the Return statement must include expression, and expression must evaluate to a data type that is convertible to the return type of the procedure. In a Function or Get procedure, you also have the alternative of assigning an expression to the procedure name to serve as the return value, and then executing an Exit Function or Exit Property statement. In an Operator procedure, you must use Return expression. You can include as many Return statements as appropriate in the same procedure. Note The code in a Finally block runs after a Return statement in a Try or Catch block is encountered, but before that Return statement executes. A Return statement cannot be included in a Finally block. See also
Source/Reference
©sideway ID: 200800011 Last Updated: 8/11/2020 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019