using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using Word;
class MainClass
{
[STAThread]
staticvoid Main(string[] args)
{
Word.ApplicationClass MyWord = new Word.ApplicationClass();
MyWord.Visible = true;
System.Windows.Forms.Application.Run();
}
}