Proprietà BuildDependencies.Count
Restituisce un valore che indica il numero di oggetti in BuildDependencies raccolta.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property Count As Integer
int Count { get; }
property int Count {
int get ();
}
abstract Count : int
function get Count () : int
Valore proprietà
Tipo: System.Int32
Un valore intero che rappresenta il numero di oggetti in BuildDependencies raccolta.
Esempi
public void Example(DTE2 dte)
{
try
{
BuildDependencies bldDepends;
SolutionBuild slnBuild;
// Get the BuildDependencies in open solution.
bldDepends = dte.Solution.SolutionBuild.BuildDependencies;
// Get the SolutionBuild
slnBuild = dte.Solution.SolutionBuild;
// Show the number of Build Dependencies in open solution.
MessageBox.Show("Number of dependencies: " + bldDepends.Count.ToString());
// Prove that Build Dependencies parent object is a SolutionBuild object.
if (bldDepends.Parent.GetType().Equals(slnBuild.GetType()))
MessageBox.Show("Types match");
else
MessageBox.Show("Types do not match");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
Altre risorse
Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione