csharp 切换声明

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 切换声明相关的知识,希望对你有一定的参考价值。

using UnityEngine;
using System.Collections;

public class SwitchStatement : MonoBehaviour
{
    public int intelligence = 5;


    void Greet()
    {
        switch (intelligence)
        {
            case 5:
                Debug.Log("Why hello there good sir! Let me teach you about Trigonometry!");
                break;
            case 4:
                Debug.Log("Hello and good day!");
                break;
            case 3:
                Debug.Log("Whadya want?");
                break;
            case 2:
                Debug.Log("Grog SMASH!");
                break;
            case 1:
                Debug.Log("Ulg, glib, Pblblblblb");
                break;
            default:
                Debug.Log("Incorrect intelligence level.");
                break;
        }
    }

     void Update()
    {
        Greet();
    }
}

以上是关于csharp 切换声明的主要内容,如果未能解决你的问题,请参考以下文章

csharp 切换Sitecore上下文

csharp C#切换示例

csharp 切换Sitecore上下文

csharp 处理从MVC到IdentityServer的上下文切换

csharp 声明Lambdas

csharp 在AccountController中获取声明