How to write to the Console input and get the Console Handle? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T21:19:53Zhttp://stackoverflow.com/feeds/question/854666http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/854666/how-to-write-to-the-console-input-and-get-the-console-handle0How to write to the Console input and get the Console Handle?CrashCodes2009-05-12T20:17:28Z2009-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#8553240Answer by Richard for How to write to the Console input and get the Console Handle?Richard2009-05-12T23:06:56Z2009-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#8553271Answer by Cheeso for How to write to the Console input and get the Console Handle?Cheeso2009-05-12T23:07:43Z2009-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>