Пример #1
0
 public SPAN(string ID, out SPAN spanRef, Control[] controls)
     : base("span")
 {
     spanRef = this;
     this.ID = ID;
     Content = controls;
 }
Пример #2
0
 public SPAN(string ID, out SPAN spanRef)
     : base("span")
 {
     spanRef = this;
     this.ID = ID;
 }