GotoExpressionKind 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定這個 GotoExpression 所代表的跳躍類型。
public enum class GotoExpressionKind
public enum GotoExpressionKind
type GotoExpressionKind =
Public Enum GotoExpressionKind
- 繼承
欄位
Break | 2 | 表示 break 陳述式的 GotoExpression。 |
Continue | 3 | 表示 continue 陳述式的 GotoExpression。 |
Goto | 0 | GotoExpression,表示跳至某個位置。 |
Return | 1 | 表示 return 陳述式的 GotoExpression。 |