Within LinqPad I can use things like
Console.ReadKey();
OR
Util.ReadLine();
But how do you run these in such a way you can actually enter the input?
The UI doesn't have a console window!
Within LinqPad I can use things like
Console.ReadKey();
OR
Util.ReadLine();
But how do you run these in such a way you can actually enter the input?
The UI doesn't have a console window!
© 2022 - 2024 — McMap. All rights reserved.
ReadKey
can't be used, butRead
orReadLine
work. – Qumran