列挙タイプの宣言
1934 ワード
namespace c
{
public enum Seasons // Seasons. .
{
,
,
,
,
}
class Program
{
static void Main(string[] args)
{
Seasons s = Seasons. ; // s.
public enum gender
{
,
,
}
static void Main(string[] args)
{
gender s1 = gender. ;
string s = "0";
gender s2 = (gender)Enum.Parse(typeof(gender), s);
Console.WriteLine(s1);
Console.WriteLine(s2);
stringタイプの変数を列挙タイプの変数に変換します.【列挙名新規変数=(列挙名)Enum.Parse(typeof(列挙名)、変換する変数名)】