Required header <conio.h> of C-library
C#
2
Posts
1
Posters
0
Views
1
Watching
-
hi, do someone know witch DLL file can contains all nio functions? like this one:
int _kbhit( void ); //Checks the console for keyboard input.
i want to import this function in my c# application. thank u in advance!ok, i've found this in msvcr71.dll
... [System.Runtime.InteropServices.DllImport("msvcr71")] static extern bool _kbhit(); [System.Runtime.InteropServices.DllImport("msvcr71")] static extern int _getch(); public bool KbHit() { return _kbhit(); } public char GetChar() { return (char)_getch(); } ...