25

文字列定数のクラスがありますが、ループして文字列を取得し、リストボックスにデータを入力するにはどうすればよいですか?

static class Fields
{
    static readonly string FirstName = "FirstName";
    static readonly string LastName = "LastName";
    static readonly string Grade = "Grade";
    static readonly string StudentID1 = "StudentID";
    static readonly string StudentID2 = "SASINumber";
}

public partial class SchoolSelect : Form
{
    public SchoolSelect()
    {
        InitializeComponent();

        //SNIP

        // populate fields
        //Fields myFields = new Fields(); // <-- Cant do this
        i = 0;
        foreach (string field in Fields) // ???
        { 
            fieldsBox.Items.Insert(i, Fields ???
        }
    }

静的クラスであるため、Fieldsの新しいインスタンスを作成できません。各フィールドを手動で挿入せずに、すべてのフィールドをリストボックスに入れるにはどうすればよいですか?

4

1 に答える 1

49

次のような何かでReflectionを試してください。

(更新版)

        Type type = typeof(Fields); // MyClass is static class with static properties
        foreach (var p in type.GetFields( System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic))
        {
            var v = p.GetValue(null); // static classes cannot be instanced, so use null...
            //do something with v
            Console.WriteLine(v.ToString());
        }
于 2012-09-18T15:37:09.457 に答える