public class myClass
{
public int a { get; set; }
public int b { get; set; }
public int c { get; set; }
}
public void myMethod(myClass data)
{
Dictionary<string, string> myDict = new Dictionary<string, string>();
Type t = data.GetType();
foreach (PropertyInfo pi in t.GetProperties())
{
myDict[pi.Name] = //...value appropiate sended data.
}
}
3 の単純なクラスproperties
。このクラスのオブジェクトを送信します。property names
たとえば、すべての値とその値を1つにループするにはどうすればよいdictionary
ですか?