I have application made from 2 solutions. One made in Visual Basics other in C# which is console-application.
I'm trying to remake that program into windows form application, however, all output is made using Console.WriteLine() commands. Output from C# I could quite easily get with richTextBox.AppendText().
When trying to output from Visual basic part, I can't do that, as I understand it's due to that fact that it is reference. What I could do to solve this?