0
Does the Console.Write (" ") output code also work other than console application in C# like for Windows form application?
3 Respostas
+ 2
For Windows form applications they have other functions and procedures.
Like: txtBox.text = "my text";
or in some cases they have lines where you can just say txtBox.lines.Add("my text");
You can directly Search them in Google if you don't know how to chance the text
0
I don't know.
0
Console. Write(" ") is a method of the Console object. So, I don't believe that it will work with form applications as they don't use the Console class.