「VB.net入門」Continue Doを利用するサンプル
サンプルコード
Module ModuleTest Sub Main() Dim n As Integer = 0 Do While n < 10 If n = 5 Then n = n + 2 Continue Do End If //some code n = n + 2 Loop End Sub End Module
Coding Changes the World
サンプルコード
Module ModuleTest Sub Main() Dim n As Integer = 0 Do While n < 10 If n = 5 Then n = n + 2 Continue Do End If //some code n = n + 2 Loop End Sub End Module