コード例 #1
0
 public Derived(TheBase theBase, int four, int five) : base(theBase)
 {
     Four = four;
     Five = five;
 }
コード例 #2
0
 public TheBase(TheBase theBase)
 {
     One   = theBase.One;
     Two   = theBase.Two;
     Three = theBase.Three;
 }