public OptionInfo(object key, string name, Type type, MemberInfo memberInfo, CommandOptionAttribute attribute, CommandOptionChoicesAttribute choicesAttribute)
			{
				this.Key = key;
				this.Name = name;
				this.Type = type;
				this.MemberInfo = memberInfo;
				this.Attribute = attribute;
				this.ChoicesAttribute = choicesAttribute;
			}
Esempio n. 2
0
 public OptionInfo(object key, string name, Type type, MemberInfo memberInfo, CommandOptionAttribute attribute, CommandOptionChoicesAttribute choicesAttribute)
 {
     this.Key              = key;
     this.Name             = name;
     this.Type             = type;
     this.MemberInfo       = memberInfo;
     this.Attribute        = attribute;
     this.ChoicesAttribute = choicesAttribute;
 }