repl.it does not support System.UI namespace in C#?
Error message from compiler:
Mono C# compiler version 4.6.2.0
mcs -out:main.exe main.cs
main.cs(2,14): error CS0234: The type or namespace name UI' does not exist in the namespace
System'. Are you missing an assembly reference?
main.cs(4,13): error CS0246: The type or namespace name TextWriter' could not be found. Are you missing
System.IO' using directive?
Voters
abc3354 (224)
Hi !
I never worked with C#, but If something is missing try https://repl.it/bugs or https://repl.it/feedback
If you want to use graphical things on C#, ask on the feeback board
There's a few reasons why it shouldn't work.
@niorg2606 I understand that GUI-related classes should not work here, but I expected it to be able to play with some IO stream classes like TextWriter.
Thanks for reply.
@AmirBayramaliev TextWriter uses
System.IO
, notSystem.UI