csharp 枚举

Posted

tags:

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

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ShootingManager : MonoBehaviour
{
  public enum Example { a = 0, b = 1, c = 2, d = 3};
   
   void Start()
   {
     Example example = (Example)StudyEnum(1);
   }
   
  int StudyEnum(int _number)
  {
    int Number = 0;

    if (_number > 10F)
        Number = (int)Example.a;
    else if (_number < 10F && _number > 5F)
        Number = (int)Example.b;
    else if (_number < 5F )
        Number = (int)Example.c;
        
    return Number;
  }   
}

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

csharp C#枚举到字符串

csharp 枚举说明

csharp 枚举到列表

csharp 在查找中绑定枚举

csharp 枚举

csharp 枚举类