/// <summary> /// ����ѡ������ʵ�� /// </summary> /// <param name="properties">���Լ���</param> /// <param name="readonly">�Ƿ�ֻ��</param> /// <returns>OptionSection</returns> protected override OptionSection CreateOptionSection(OptionValueCollection properties, bool @readonly) { return new XmlOptionSection(properties, @readonly); }
public OptionContext(OptionSet set) { this.set = set; this.c = new OptionValueCollection(this); }
/// <summary> /// ��ʼ�� /// </summary> /// <param name="properties">���Լ���</param> /// <param name="readonly">�Ƿ�ֻ��</param> protected XmlOptionSection(OptionValueCollection properties, bool @readonly) : base(properties, @readonly) { }
public OptionContext(OptionSet set) { OptionSet = set; OptionValues = new OptionValueCollection(this); }
public OptionContext() { OptionValues = new OptionValueCollection(this); }