public ConfigMsg(string configName, string configDesc, object configValue, string configType, string[] configValueList) { this.strConfigDesc = configDesc; this.strConfigName = configName; this.objConfigValue = configValue; this.strConfigType = configType; this.arrConfigValueList = configValueList; this.configMsgs = new ConfigMsgs(); }
public ConfigMsg() { this.strConfigDesc = ""; this.strConfigName = ""; this.objConfigValue = ""; this.strConfigName = "S"; this.arrConfigValueList = new string[] { }; this.configMsgs = new ConfigMsgs(); }
public ConfigMsg(ConfigMsgs obj, string configName, string configDesc, object configValue, string configType, string[] configValueList) : this(configName, configDesc, configValue, configType, configValueList) { this.configMsgs = obj; }