Project.UniqueName 属性

获取一个唯一字符串值,该值使您能够区分名称相似的项目。

命名空间:  EnvDTE
程序集:  EnvDTE(在 EnvDTE.dll 中)

语法

声明
ReadOnly Property UniqueName As String
    Get
string UniqueName { get; }
property String^ UniqueName {
    String^ get ();
}
abstract UniqueName : string
function get UniqueName () : String

属性值

类型:System.String
一个字符串,表示用于区分名称相似的项目的唯一值。

备注

UniqueName 主要用于对 Solution.Item("...") 进行索引。 此方法返回一个临时的唯一字符串值,该值可用于区分项目。 尽管可以将一个 UniqueName 值与另一个进行比较,但是这种比较对实际字符串值没有意义,因为这种临时字符串值仅用于比较。

要进行有意义的比较,请改用 FullName 属性或由类似的持久属性组成的某些组合。

示例

Sub UniqueNameExample()
   Dim proj As Project
   Dim projitems As ProjectItems
   Dim msg As String

   ' Reference the current solution and its projects and project items.
   proj = DTE.ActiveSolutionProjects(0)
   projitems = proj.ProjectItems

   ' List properties of the project and its items.
   msg = "Is the item open? " & projitems.Item(1).IsOpen & Chr(13)
   msg = msg & "The project's unique name: " & proj.UniqueName
   ' The following two properties work only if the current project 
   ' contains subprojects. If it does, then uncomment the lines to run 
   ' them.
   ' msg = msg & "The parent project item name: " & proj.ParentProjectItem.Name & Chr(13)
   ' msg = msg & "The subproject name: " & projitems.Item(1).SubProject.Name & Chr(13)
   MsgBox(msg)
End Sub

.NET Framework 安全性

请参见

参考

Project 接口

EnvDTE 命名空间

其他资源

控制项目和解决方案