0

カスタム ユーザー オブジェクト クラス appuser があります

   public class appuser
    {
        public Int32 ID { get; set; }
        public Int32 ipamuserID { get; set; }
        public Int32 appID { get; set; }
        public Int32 roleID { get; set; }
        public Int16 departmenttypeID { get; set; }
        public generaluse.historycrumb recordcrumb { get; set; }

        public appuser() { }
        public appuser(DataRow dr)
        {
            ID = Convert.ToInt32(dr["AppUserID"].ToString());
            ipamuserID = Convert.ToInt32(dr["IpamUserID"].ToString());
            appID = Convert.ToInt32(dr["AppID"].ToString());
            roleID = Convert.ToInt32(dr["AppRoleID"].ToString());
            departmenttypeID = Convert.ToInt16(dr["AppDepartmentTypeID"].ToString());
            recordcrumb = new generaluse.historycrumb(dr);
        }
        public void appuserfill(DictionaryEntry de, ref appuser _au)
        {
            //Search for key in appuser given by de and set appuser property to de.value
        }
    }

最初のキーが何であるかを知らなくても、DictionaryEntry のキーとして渡される appuser オブジェクト内のプロパティを設定するにはどうすればよいですか?

例: de.key = ipamuserID、_au 内でプロパティを動的に検索し、値 = de.value? を設定します。

4

1 に答える 1

0

技術的には、リフレクションを使用できますが、それは良い解決策ではありません - 任意のプロパティに書き込もうとしています。リフレクションを使用したソリューションは、次のようになります。

//Search for key in appuser given by de and set appuser property to de.value
public void appuserfill(DictionaryEntry de, ref appuser _au) { // <- There's no need in "ref"
  if (Object.ReferenceEquals(null, de))
    throw new ArgumentNullException("de");
  else if (Object.ReferenceEquals(null, _au))
    throw new ArgumentNullException("_au");

  PropertyInfo pInfo = _au.GetType().GetProperty(de.Key.ToString(), BindingFlags.Instance | BindingFlags.Public);

  if (Object.ReferenceEquals(null, pInfo))
    throw new ArgumentException(String.Format("Property {0} is not found.", de.Key.ToString()), "de");
  else if (!pInfo.CanWrite)
    throw new ArgumentException(String.Format("Property {0} can't be written.", de.Key.ToString()), "de");

  pInfo.SetValue(_au, de.Value);
}
于 2013-07-02T18:30:13.260 に答える