|
> プロパティーや任意で指定した文字を
> オブジェクトとして認識させたいのですが、
あらかじめ文字列からオブジェクトを引ける辞書を用意しておけばなんとか。
using System;
using System.Collections.Generic;
public class Program {
private static string apple = "りんご";
private static string orange = "みかん";
private static string peach = "もも";
public static void Main() {
Dictionary<string,object> dic = new Dictionary<string,object>();
dic.Add("apple", apple );
dic.Add("orange",orange);
dic.Add("peach", peach );
foreach ( string key in new string[] { "apple","orange","peach" }) {
Console.WriteLine("{0} = {1}", key, dic[key]);
}
}
}
|