Last active
August 29, 2015 14:21
-
-
Save kankikuchi/0c3892c736543c9385a8 to your computer and use it in GitHub Desktop.
列挙型と数値or文字列との相互変換や項目数の取得など【C#】
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
/// <summary> | |
/// 色々なタイプ(列挙型)を管理するクラス | |
/// </summary> | |
public static class TypeData{ | |
//ステータスの種類 | |
public enum StatusType{ | |
HP = 0, ATK, DEF, SPD | |
} | |
/// <summary> | |
/// 入力されたkeyが設定されたタイプに含まれるか | |
/// </summary> | |
public static bool ContainsKey<T>(string tagetKey){ | |
foreach(T t in Enum.GetValues(typeof(T))){ | |
if(t.ToString() == tagetKey){ | |
return true; | |
} | |
} | |
return false; | |
} | |
/// <summary> | |
/// 入力されたkeyと同じ列挙型の項目を取得する | |
/// </summary> | |
public static T KeyToType<T>(string targetKey){ | |
return (T)Enum.Parse (typeof(T), targetKey); | |
} | |
/// <summary> | |
/// 入力されたNoと同じ列挙型の項目を取得する | |
/// </summary> | |
public static T NoToType<T>(int targetNo){ | |
return (T)Enum.ToObject (typeof(T), targetNo); | |
} | |
/// <summary> | |
/// 指定した列挙型の項目数を取得する | |
/// </summary> | |
public static int GetTypeNum<T>(){ | |
return Enum.GetValues (typeof(T)).Length; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment