linux - monodevelop program hangs on readline -


i saw many questions on "readline gets ignored" problem different.

i have simple program :

using system; namespace test {     class mainclass     {         public static void main(string[] args)         {             console.writeline(console.readline());         }     } } 

simple isn't ? when execute using monodevelop :
program output

as can see doesn't matter how many lines put.

ctrl+c doesn't work, nor ctrl+d(end-of-file character on linux ;) )

i have mono 4.4.0, strange when execute above program using mono program.exe works expected.

i saw this question went options -> run -> general , have execute program on external console checked.

i saw other questions "program hangs on readline" talk readline other streams, i'm talking simple console.readline().

i have monodevelop 6.0.1 on arch linux(installed monodevelop-stable aur package if matters).


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -