using System; namespace mbsh { /// /// Implements an object that has the functionality of cscript's WScript root object /// public class CWScript { public CWScript() { } public void Echo(string outputLine) { Console.WriteLine(outputLine); } } }