I really like using Console applications to learn different aspects of .NET programming. I'm wondering if there is a way to emulate the Console in a Silverlight or WPF application.
Is there already an open source Console control that I could plug into my application?
Most importantly, I'd need to be able to emulate the appropriate Read
and Write
methods of System.Console
.
Obviously, re-using a component someone else has already built would be ideal, but if I needed to build a "Console control" from scratch, what might I need to consider?