コード例 #1
0
 public KzFieldMeta(int number, KzFieldType type, string description)
 {
     this.Description = description ?? throw new ArgumentNullException(nameof(description));
     this.Number      = number;
     this.Type        = type ?? throw new ArgumentNullException(nameof(type));
 }
コード例 #2
0
 protected void F(int number, KzFieldType type, string description)
 {
     this.fields.Add(new KzFieldMeta(number, type, description));
 }