Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
308 B

  1. using System;
  2. namespace mbsh
  3. {
  4. /// <summary>
  5. /// Implements an object that has the functionality of cscript's WScript root object
  6. /// </summary>
  7. public class CWScript
  8. {
  9. public CWScript()
  10. {
  11. }
  12. public void Echo(string outputLine)
  13. {
  14. Console.WriteLine(outputLine);
  15. }
  16. }
  17. }