vbyu1987 发表于 2012-11-22 21:46:12

一段代码的理解

Imports Autodesk.AutoCAD.ApplicationServices
Imports Autodesk.AutoCAD.EditorInput
Imports Autodesk.AutoCAD.Runtime
Public Class Class1
    <CommandMethod("hello")> _
    Public Sub hello()
      ' 获取当前活动文档的Editor对象,也就是命令行
      Dim ed As Editor = Application.DocumentManager.MdiActiveDocument.Editor
      ' 调用Editor对象的WriteMessage方法在命令行上显示文本
      ed.WriteMessage("欢迎进入.NET开发AutoCAD的世界!")
    End Sub
End Class

这是一本书里的代码
请问,<CommandMethod("hello")> _ 最后的 _ 是什么意思啊
还有 sub 的hello为什么改变了之后,调试还是正确的

多谢指教

页: [1]
查看完整版本: 一段代码的理解