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

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