public ClassA1(bool p1, char p2, string p3, int p4, float p5, double p6,
                decimal p7, DateTime p8, IClassB p9, IClassC p10, IClassD p11, object p12,
                IEnumerable <object> p13, byte p14, short p15, long p16, EnumForA p17,
                bool?p18, bool?p19, int?p20, int?p21, decimal?p22, decimal?p23)
 {
     this.P1  = p1;
     this.P2  = p2;
     this.P3  = p3;
     this.P4  = p4;
     this.P5  = p5;
     this.P6  = p6;
     this.P7  = p7;
     this.P8  = p8;
     this.P9  = p9;
     this.P10 = p10;
     this.P11 = p11;
     this.P12 = p12;
     this.P13 = p13;
     this.P14 = p14;
     this.P15 = p15;
     this.P16 = p16;
     this.P17 = p17;
     this.P18 = p18;
     this.P19 = p19;
     this.P20 = p20;
     this.P21 = p21;
     this.P22 = p22;
     this.P23 = p23;
 }
Esempio n. 2
0
 public ClassC(IClassD classD)
 {
     _classD = classD;
 }