Search Results

5
votes

What is a good way to find the latest created file in a folder in c#?

Sorting the files is taking you O(nlogn) time. If all you need is the most recently created, it would be faster to just scan through the files and find the most recent---O(n). …
2
votes

Temporarily suspend the PC operating system.

There are lots of really ugly ways to do this. You could modify the running kernel by writing some trampoline code to /dev/kmem that passes control to your application. But I wouldn't recommend a …