Beispiel #1
0
 /**
  * @brief 設定參數
  * @param szName 參數名稱
  * @param value 參數值
  */
 public void Set(Argp value)
 {
     foreach (KeyValuePair <string, Argu> itor in value.m_Argument)
     {
         m_Argument[itor.Key] = itor.Value;
     }
 }
Beispiel #2
0
 public Argp(Argp argp)
 {
     m_Argument = argp.m_Argument;
 }
Beispiel #3
0
 /**
  * @brief 設定參數
  * @param szName 參數名稱
  * @param value 參數值
  */
 public void Set(Argp value)
 {
     foreach (KeyValuePair<string, Argu> itor in value.m_Argument)
         m_Argument[itor.Key] = itor.Value;
 }
Beispiel #4
0
 public Argp(Argp argp)
 {
     m_Argument = argp.m_Argument;
 }