HIRASE CONNECTION WK

programming collection

目次

Blog 利用状況

ニュース

書庫

日記カテゴリ

Link Collection

[C#] 名前付き定数・・・?

名前つきの何かを作るためのAttribute。

たとえば、下の例のように、表示名だけを変えたいようなケースとか、もう少し拡張すれば、多言語化アプリ作成にも役立ちそう。

using System;
using System.Reflection;

namespace Sample
{
    internal class Program
    {
        enum Windows
        {
            [Name("Windows 95")]
            Chicago,
            [Name("Windows 95 OSR2")]
            Detroit,
            [Name("Windows 98")]
            Memphis,
            [Name("Windows 2000")]
            Cairo,
            [Name("Windows Me")]
            Georgia,
            [Name("Windows XP")]
            Whistler,
            [Name("Windows Vista")]
            Longhorn,
        }

        private static void Main(string[] args)
        {
            foreach (object value in Enum.GetValues(typeof(Windows)))
            {
                String name = NameAttribute.GetName(value as Enum);
                Console.WriteLine(name);
            }
        }
    }

    [AttributeUsage(AttributeTargets.All)]
    public class NameAttribute : Attribute
    {
        public String Name
        {
            get;
            private set;
        }

        public NameAttribute(String name)
        {
            this.Name = name;
        }

        public static String GetName(MemberInfo type)
        {
            Attribute[] attributes;
            attributes = type.GetCustomAttributes(typeof(NameAttribute), true) as Attribute[];
            if (attributes == null || attributes.Length == 0)
                return null;

            NameAttribute nameAttribute = attributes[0] as NameAttribute;
            return nameAttribute.Name;
        }

        public static String GetName(Enum enumValue)
        {
            Type enumType = enumValue.GetType();
            String enumName = Enum.GetName(enumType, enumValue);

            return GetName(enumType.GetField(enumName));
        }
    }
}

投稿日時 : 2008年3月28日 1:01

コメントを追加

# 定数定義クラス その2 2008/03/30 14:27 日々迷走

定数定義クラス その2

# re: [C#] 名前付き定数・・・? 2008/04/01 9:20 T.Hirase

TO: yanさま。
トラックバックどうもです。
ダブってトラックバックされている箇所は消しておきました。

# Hi there! I know this is kinda off topic but I was wondering which blog platform are you using for this website? I'm getting tired of Wordpress because I've had problems with hackers and I'm looking at options for another platform. I would be great if y 2021/08/01 11:27 Hi there! I know this is kinda off topic but I was

Hi there! I know this is kinda off topic but I was wondering which
blog platform are you using for this website?
I'm getting tired of Wordpress because I've had
problems with hackers and I'm looking at options for another platform.
I would be great if you could point me in the direction of a good platform.

# ivermectin 12 http://stromectolabc.com/
stromectol 3 mg tablet 2022/02/08 9:34 Busjdhj

ivermectin 12 http://stromectolabc.com/
stromectol 3 mg tablet

# buy ivermectin canada http://stromectolabc.com/
ivermectin 6mg 2022/02/08 16:38 Busjdhj

buy ivermectin canada http://stromectolabc.com/
ivermectin 6mg

# how to order doxycycline https://doxycyline1st.com/
how to buy doxycycline online 2022/02/26 20:03 Doxycycline

how to order doxycycline https://doxycyline1st.com/
how to buy doxycycline online

# Hello, after reading this remarkable article i am as well glad to share my familiarity here with colleagues. 2022/03/30 20:15 Hello, after reading this remarkable article i am

Hello, after reading this remarkable article i am as well glad to share my familiarity here with
colleagues.

# I like it whenever people come together and share thoughts. Great blog, stick with it! 2022/04/07 14:59 I like it whenever people come together and share

I like it whenever people come together and share thoughts.
Great blog, stick with it!

# Wow, this post is good, my sister is analyzing these kinds of things, so I am going to inform her. 2022/05/01 3:00 Wow, this post is good, my sister is analyzing the

Wow, this post is good, my sister is analyzing these kinds of things, so
I am going to inform her.

# ed medications list https://erectionpills.best/
online ed medications 2022/06/28 19:51 ErectionPills

ed medications list https://erectionpills.best/
online ed medications

# metformin tablet cost https://glucophage.top/
metformin 10000 mg 2022/08/23 15:37 Niujsdkj

metformin tablet cost https://glucophage.top/
metformin 10000 mg

# ed meds online without doctor prescription https://withoutdoctorprescription.xyz/
non prescription ed pills 2022/09/07 17:36 IvanPres

ed meds online without doctor prescription https://withoutdoctorprescription.xyz/
non prescription ed pills

# erectile dysfunction medications https://erectiledysfunctionpills.shop/ 2022/10/14 22:48 Erectile

erectile dysfunction medications https://erectiledysfunctionpills.shop/

# prednisone pill prices https://prednisonepills.site/
cheap prednisone 20 mg 2022/11/30 7:57 Prednisone

prednisone pill prices https://prednisonepills.site/
cheap prednisone 20 mg

# male erection pills https://edpillsotc.store/# - best erection pills 2023/10/07 21:15 EdPills

male erection pills https://edpillsotc.store/# - best erection pills

# prednisone 20mg https://prednisone.bid/ steroids prednisone for sale 2023/12/27 6:54 Prednisone

prednisone 20mg https://prednisone.bid/ steroids prednisone for sale

# eva elfie modeli https://evaelfie.pro/ eva elfie video 2024/03/03 8:45 EvaElfia

eva elfie modeli https://evaelfie.pro/ eva elfie video

# gates of olympus giriş - https://gatesofolympus.auction/ gates of olympus demo oyna 2024/03/27 19:07 Olympic

gates of olympus giriş - https://gatesofolympus.auction/ gates of olympus demo oyna

# buy cytotec https://cytotec.club/ Abortion pills online 2024/04/28 2:37 Cytotec

buy cytotec https://cytotec.club/ Abortion pills online

タイトル
名前
URL
コメント