c# - How to make console writeline only when read memory has changed? -


i need little here. have program reading memory , writing memory console in while loop, example

while (true) {        console.clear();     console.writeline(readmemory);     thread.sleep(1000); } 

this useful , flickers , slows program since using "thread.sleep" there way output read memory value console , not update unless has changed?


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -