radimitrov / CSharpShellApp

77 stars 18 forks source link

Using static System.Console; produce errors when using its keywords #358

Closed HaziTru closed 5 months ago

HaziTru commented 5 months ago

On other IDE's im able to put : using static System.Console; up top so i can use it's classes without having to write out the whole thing. For example instead of typing Console.WriteLine I'd be able to just type WriteLine or ReadKey etc. Not sure why it's not working and giving me errors if this is framework 8.0.

radimitrov commented 5 months ago

System.Console has very limited implementation under Android. Changing it to using static CSharpShellCore.Console should give more options.

HaziTru commented 5 months ago

Okay ill give that a try thanks