_Solution.Projects Property

Gets a collection of the projects currently in the solution.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
ReadOnly Property Projects As Projects
Projects Projects { get; }
property Projects^ Projects {
    Projects^ get ();
}
abstract Projects : Projects
function get Projects () : Projects

Property Value

Type: EnvDTE.Projects
A Projects collection.

Examples

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 Security

See Also

Reference

_Solution Interface

EnvDTE Namespace