Has Anyone Created C# Classes for Win32 API?
-
Instead of re-inventing the wheel and roll my own class set, i thought i would ask if anyone at codeproject has created a basic set of win32 api classes that one can use in C# programs. I was only able to find bits and pieces on the internet.
www.pinvoke.net will shouw you how to call API functions you need. You're calling the Win32 API everytime you use C# tho, you realise that, right ? Christian Graus - Microsoft MVP - C++
-
www.pinvoke.net will shouw you how to call API functions you need. You're calling the Win32 API everytime you use C# tho, you realise that, right ? Christian Graus - Microsoft MVP - C++
I use www.pinvoke.net often. It will just take some time cut-n-pasting all this stuff and organize it into a modular library. I think i will build a Win32 library as i go, adding functions as i use them, refactoring as needed. Reinventing the wheel is not all bad if it does not take too much time. Appreciate the help.
-
I use www.pinvoke.net often. It will just take some time cut-n-pasting all this stuff and organize it into a modular library. I think i will build a Win32 library as i go, adding functions as i use them, refactoring as needed. Reinventing the wheel is not all bad if it does not take too much time. Appreciate the help.