阿水被抢了 发表于 2009-3-24 13:52:00

[求助]2009下面hello world怎么写??

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Autodesk..ApplicationServices;
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.Runtime;
namespace ClassLibrary1
{
    public class Class1
    {
      
      public void HelloWorld()
      {
            Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;
            ed.WriteMessage("Hello World");
      }
    }
}
这样写不行,该怎么改,有人知道吗??
页: [1]
查看完整版本: [求助]2009下面hello world怎么写??