Esempio n. 1
0
 public CPU(ICPUSignil cPUSignil)
 {
     CPUSignil = cPUSignil ?? throw new ArgumentNullException(nameof(cPUSignil));
     Philote   = null;
 }
Esempio n. 2
0
 public CPU(ICPUSignil cPUSignil, IPhilote <ICPU>?philote)
 {
     CPUSignil = cPUSignil ?? throw new ArgumentNullException(nameof(cPUSignil));
     Philote   = philote;
 }