- VB.Net 基础教程
- VB.Net - 主页
- VB.Net - 概述
- VB.Net - 环境设置
- VB.Net - 程序结构
- VB.Net - 基本语法
- VB.Net - 数据类型
- VB.Net - 变量
- VB.Net - 常量
- VB.Net - 修饰符
- VB.Net - 语句
- VB.Net - 指令
- VB.Net - 运算符
- VB.Net - 决策制定
- VB.Net - 循环
- VB.Net - 字符串
- VB.Net - 日期和时间
- VB.Net - 数组
- VB.Net - 集合
- VB.Net - 函数
- VB.Net - 子例程
- VB.Net - 类和对象
- VB.Net - 异常处理
- VB.Net - 文件操作
- VB.Net - 基本控件
- VB.Net - 对话框
- VB.Net - 高级窗体
- VB.Net - 事件处理
- VB.Net 高级教程
- VB.Net - 正则表达式
- VB.Net - 数据库访问
- VB.Net - Excel 工作表
- VB.Net - 发送电子邮件
- VB.Net - XML 处理
- VB.Net - Web 编程
- VB.Net 实用资源
- VB.Net - 快速指南
- VB.Net - 实用资源
- VB.Net - 讨论
VB.Net - 嵌套 Select Case 语句
可以选择语句作为外部选择语句语句序列的一部分。即使内部和外部选择语句的大小写常量包含相同的值,也不会出现冲突。
示例
Module decisions Sub Main() 'local variable definition Dim a As Integer = 100 Dim b As Integer = 200 Select a Case 100 Console.WriteLine("This is part of outer case ") Select Case b Case 200 Console.WriteLine("This is part of inner case ") End Select End Select Console.WriteLine("Exact value of a is : {0}", a) Console.WriteLine("Exact value of b is : {0}", b) Console.ReadLine() End Sub End Module
编译并执行以上代码时,会产生以下结果 −
This is part of outer case This is part of inner case Exact value of a is : 100 Exact value of b is : 200
vb.net_decision_making.htm
广告