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