Propriedade _Solution.Projects
Obtém uma coleção de projetos atualmente na solução.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE.dll)
'Declaração
ReadOnly Property Projects As Projects
Projects Projects { get; }
property Projects^ Projects {
Projects^ get ();
}
abstract Projects : Projects with get
function get Projects () : Projects
Tipo: EnvDTE.Projects
A Projects coleção.
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
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiável.