Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written earlier in C/C++ but currently, I need it to convert into C#.

Can anyone tell me the code/way How to write drivers in C#?

Actually currently I have some problems with my old application written in C++ and we have to write the drivers of our LPT1,COM Printers and other USB drivers in C#.

share|improve this question

6 Answers

up vote 8 down vote accepted

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, prone to blue screen and requires a good understanding of C , kernel structures and mem manipulation. None of those skills are required for C# and .NET therefore there is a long and painful training path.

share|improve this answer
Considering that code must be signed before execution, it's not possible to make a signed driver either (although IL may be) if the code is JITted. (On the Xbox 360 all XNA/.NET code runs in user space contrary to native code games, so apparently Microsoft has no "solution" for this). There are some C# OSes, though, in which drivers are done in C#, pretty neat. – Cecil Has a Name Jun 28 '09 at 15:23
1  
Not all device drivers on Windows require kernel mode to run. The video drivers, and I believe the audio drivers, now run in user mode in both Windows Vista and Windows 7. Also there's now a User-Mode Driver Framework available from Microsoft. Note sure if it works with .NET, probably is still C/C++ based. microsoft.com/whdc/driver/wdf/UMDF.mspx – Chris Pietschmann Nov 4 '10 at 21:08

Actually, you can write some drivers in C# (see User-Mode Driver Framework (UMDF)). But my recommendation is to use C/C++.

share|improve this answer

You cannot write kernel mode drivers in C# (the runtime executes in user mode therefore you can't get into ring0). This SO Q/A provides some links you may find helpful:

http://stackoverflow.com/questions/75886/c-driver-development

share|improve this answer

It's unclear from your description whether you intend to develop Windows device drivers or to interact with hardware through existing device drivers.

For example, to interact with devices connected to your serial port, you don't need to write your own driver and in fact, you can access it through .NET's SerialPort class.

Even USB devices can be accessed from user space (and, ultimately, managed code) through frameworks such as libusb-win32, WinUSB etc.

share|improve this answer

You can't write drivers in C#; drivers need to run with elevated privilege to be able to talk to hardware; managed code cannot be run in the appropriate environment.

share|improve this answer
Otherwise, is there any way to handle my previous code in C#? – Rick Jun 15 '09 at 5:39
Well, we don't really know what your code does. Are you talking about writing device drivers in C#, which isn't possible (as mentioned) or are you talking about opening the devices in C# and sending data to them (which should be possible as you should be able to open them as a file and just read/write to the handle). – Timo Geusch Jun 15 '09 at 6:08

you can't do Drivers And Native Exes with c#. beside that all the world do it with c/c++. why you want to do it with c# because really it is good to do it with c/c++.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.