Exemplo n.º 1
0
 public OperatingSystem(IHardDriveReadable algorithm)
 {
     processes      = new List <Process>();
     this.algorithm = algorithm;
 }
Exemplo n.º 2
0
 private void rbtnFCFS_CheckedChanged(object sender, EventArgs e)
 {
     algorithm = new FCFS();
     os        = new OperatingSystem(algorithm);
     GenerateSampleRequests();
 }