This document discusses loop control statements in VB.NET, including exit, continue, and goto statements. The exit statement terminates the loop and transfers control to the statement after the loop. The continue statement skips the rest of the current loop iteration and continues to the next one. The goto statement unconditionally transfers control to a labeled statement. Examples are provided for each type of statement.