コード例 #1
0
 public SSD(ComputerComponent c)
     : base(c)
 {
 }
コード例 #2
0
 public RAM(ComputerComponent c)
     : base(c)
 {
 }
コード例 #3
0
 public HardDrive(ComputerComponent c)
     : base(c)
 {
 }
コード例 #4
0
 public Processor(ComputerComponent c)
     : base(c)
 {
 }
コード例 #5
0
 protected Accessory(ComputerComponent c)
 {
     Computer = c;
 }