csharp 使用IF构造的C#菜单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用IF构造的C#菜单相关的知识,希望对你有一定的参考价值。

Selecting using the if construction

When you come to perform the actual selection you end up with code which looks a bit
like this:


int selection ;
selection = readInt ( "Window Type : ", 1, 3 ) ;
if ( selection == 1 )
{
handleCasement();
}
else
{
if ( selection == 2 )
{
handleStandard();
}
else
{
if ( selection == 3 )
{
handlePatio() ;
}
else
{
Console.WriteLine ( "Invalid number" );
}
}
}


This would work OK, but is rather clumsy. You have to write a large number of if
constructions to activate each option.

以上是关于csharp 使用IF构造的C#菜单的主要内容,如果未能解决你的问题,请参考以下文章

csharp Excel文件构造函数C#

csharp 有关如何使用try catch构造捕获异常的示例。从计算机编程基础与C#http://www.introprogr

csharp 有关如何使用try catch构造捕获异常的示例。从计算机编程基础与C#http://www.introprogr

csharp Excel文件构造函数C#NET Core

csharp 使用if else确定char是小写还是大写的示例。来自Microsoft C#参考https://docs.microsoft.com/en-us/

csharp 使用if else确定char是小写还是大写的示例。来自Microsoft C#参考https://docs.microsoft.com/en-us/