_Solution.Projects 属性

获取解决方案中当前项目的集合。

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

语法

声明
ReadOnly Property Projects As Projects
Projects Projects { get; }
property Projects^ Projects {
    Projects^ get ();
}
abstract Projects : Projects
function get Projects () : Projects

属性值

类型:EnvDTE.Projects
一个 Projects 集合。

示例

Sub ProjectsExample()
   ' Open a solution before running this example.
   Dim soln As Solution

   ' Create a reference to the solution.
   soln = DTE.Solution

   ' List the number of projects.
   MsgBox(soln.Projects.Count)
End Sub

.NET Framework 安全性

请参见

参考

_Solution 接口

EnvDTE 命名空间