C# output to console #578
-
When running a C# script, is there a way to print out to console to view output for debugging, etc.? It appears that the standard method is Console.WriteLine() but this doesn't appear to output anywhere. I have been using the .Output() function on string variables which displays output but in a message window so it has to be clicked through for each item. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
There is no console in TE3 as it is not a console application. Instead, consider appending to a string and then output the string at the end of the script, or write your output directly to a file on disk. |
Beta Was this translation helpful? Give feedback.
There is no console in TE3 as it is not a console application. Instead, consider appending to a string and then output the string at the end of the script, or write your output directly to a file on disk.