Exemplo n.º 1
0
        //────────────────────────────────────────
        #endregion



        #region アクション
        //────────────────────────────────────────

        public void Set(string sName, EnumTypedb enum_Typedb, object value, Log_Reports log_Reports)
        {
            if (this.Dictionary_Field.ContainsKey(sName))
            {
                //todo:この連想配列は大文字小文字を区別しないので不具合を起こす可能性がある。
                this.Dictionary_Field[sName] = new FieldUserformtableImpl(sName, enum_Typedb, value);
            }
            else
            {
                this.Dictionary_Field.Add(sName, new FieldUserformtableImpl(sName, enum_Typedb, value));
            }
        }
Exemplo n.º 2
0
        //────────────────────────────────────────

        /// <summary>
        /// コンストラクター。
        /// </summary>
        public FieldUserformtableImpl(string sName, EnumTypedb enum_Typedb, object data)
        {
            this.name       = sName;
            this.enumTypedb = enum_Typedb;
            this.data       = data;
        }
Exemplo n.º 3
0
 //────────────────────────────────────────
 public void Set(string sName, EnumTypedb enum_Typedb, object value, Log_Reports log_Reports)
 {
     if (this.Dictionary_Field.ContainsKey(sName))
     {
         //todo:この連想配列は大文字小文字を区別しないので不具合を起こす可能性がある。
         this.Dictionary_Field[sName] = new FieldUserformtableImpl(sName, enum_Typedb, value);
     }
     else
     {
         this.Dictionary_Field.Add(sName, new FieldUserformtableImpl(sName, enum_Typedb, value));
     }
 }
Exemplo n.º 4
0
 //────────────────────────────────────────
 /// <summary>
 /// コンストラクター。
 /// </summary>
 public FieldUserformtableImpl(string sName, EnumTypedb enum_Typedb, object data)
 {
     this.name = sName;
     this.enumTypedb = enum_Typedb;
     this.data = data;
 }
Exemplo n.º 5
0
 //────────────────────────────────────────
 /// <summary>
 /// コンストラクター。
 /// </summary>
 public FieldUserformtableImpl()
 {
     this.name = "";
     this.enumTypedb = EnumTypedb.Another;
 }