Tagged Questions
The pure-managed tag has no wiki summary.
5
votes
2answers
1k views
Lock Windows workstation programmatically in C#
I ran into this example for locking Windows workstation:
using System.Runtime.InteropServices;
...
[DllImport("user32.dll", SetLastError = true)]
static extern bool LockWorkStation();
...
if ...
3
votes
3answers
430 views
Is there a pure-managed DirectX wrapper?
I'm currently in need of a purely managed code DirectX wrapper for .NET. While SlimDX is great, its use of unmanaged code makes it impossible to perform proper dead code analysis on, for the purpose ...