How to write to the Console input and get the Console Handle? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T21:19:53Z http://stackoverflow.com/feeds/question/854666 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/854666/how-to-write-to-the-console-input-and-get-the-console-handle 0 How to write to the Console input and get the Console Handle? CrashCodes 2009-05-12T20:17:28Z 2009-05-13T14:56:10Z <p>I want the user to be able to have some data already in the input stream that they can change. I looked into the below function, but I'm not sure how to get the Console handle from the Console class. </p> <pre><code> [DllImport("kernel32", CharSet = CharSet.Auto, SetLastError = true)] public static extern bool WriteConsoleInput( IntPtr hConsoleInput, [Out] INPUT_RECORD[] lpBuffer, int nLength, out int lpNumberOfEventsWritten); public static void WriteConsoleInput() { UInt32 STD_INPUT_HANDLE = 0xfffffff6; IntPtr hConsoleInput = GetStdHandle(STD_INPUT_HANDLE); INPUT_RECORD[] lpBuffer = new INPUT_RECORD[2]; // I tried using uChar (short) as well. lpBuffer[0].Event.KeyEvent.wVirtualKeyCode = 0x41; // A lpBuffer[1].Event.KeyEvent.wVirtualKeyCode = 0x5A; // Z int nLength = lpBuffer.Length; int lpNumberOfEventsWritten; if (!WriteConsoleInput( hConsoleInput, lpBuffer, nLength, out lpNumberOfEventsWritten)) { // Don't get here. Console.WriteLine("Error: {0}", GetLastError()); } } // A breakpoint here shows that lpNumberOfEventsWritten is 2 ... ... ... Console.Write("Input something: "); WriteConsoleInput(); String input = Console.ReadLine(); Console.WriteLine("input = {0}", input); </code></pre> <p>I don't see anything on the screen behind the "Input something: ". If I just hit enter, input is an empty string.</p> http://stackoverflow.com/questions/854666/how-to-write-to-the-console-input-and-get-the-console-handle/855324#855324 0 Answer by Richard for How to write to the Console input and get the Console Handle? Richard 2009-05-12T23:06:56Z 2009-05-12T23:06:56Z <p>Rather than mixing managed and unmanaged (which is likely to mess up assumptions <code>System.Console</code> makes) I would suggest just using P/Invoke the whole way.</p> <p>MSDN has an example: <a href="http://msdn.microsoft.com/library/ms685035" rel="nofollow">http://msdn.microsoft.com/library/ms685035</a></p> http://stackoverflow.com/questions/854666/how-to-write-to-the-console-input-and-get-the-console-handle/855327#855327 1 Answer by Cheeso for How to write to the Console input and get the Console Handle? Cheeso 2009-05-12T23:07:43Z 2009-05-12T23:07:43Z <p>Does this work? </p> <pre><code>public class ConsoleHandles { private const uint STD_INPUT_HANDLE = 0xfffffff6; private const uint STD_OUTPUT_HANDLE = 0xfffffff5; private const uint STD_ERROR_HANDLE = 0xfffffff4; [DllImport("kernel32.dll")] private static extern int GetStdHandle(uint nStdHandle); public Int32 Stdin { get { return GetStdHandle(STD_INPUT_HANDLE ); } } //etc } </code></pre>