Writing drivers in C#
Simply you can’t. C# produces intermediate language that is interpreted by a virtual machine (.NET). All these stuff runs in user mode and WDM drivers run in kernel mode. There is a DDK but it is not supported in VStudio either (but you can make a makefile project for compilation though). Driver development is complex, … Read more