public void CallProperties()
 {
     MemoryStatus status = new MemoryStatus();
     TypeHelper.ShowPropertyValues(status);
 }
Ejemplo n.º 2
0
 public void Start()
 {
     this.startStatus = new MemoryStatus();
     this.endStatus = null;
 }
Ejemplo n.º 3
0
 public void Stop()
 {
     if (this.startStatus == null)
         throw new InvalidOperationException("Trying to call Stop before Start");
     this.endStatus = new MemoryStatus();
 }
Ejemplo n.º 4
0
 public void Start()
 {
     this.startStatus = new MemoryStatus();
     this.endStatus   = null;
 }