Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ internal static string ReadConsole(ConsoleHandle consoleHandle, string initialCo
bool result =
NativeMethods.ReadConsole(
consoleHandle.DangerousGetHandle(),
out buffer,
buffer,
(DWORD)charactersToRead,
out charsReadUnused,
ref control);
Expand Down Expand Up @@ -3022,7 +3022,7 @@ IntPtr reserved
internal static extern bool ReadConsole
(
NakedWin32Handle consoleInput,
out StringBuilder buffer,
StringBuilder buffer,
DWORD numberOfCharsToRead,
out DWORD numberOfCharsRead,
ref CONSOLE_READCONSOLE_CONTROL controlData
Expand Down