Configurations.Count プロパティ
更新 : 2007 年 11 月
Configurations コレクション内のオブジェクトの数を示す値を取得します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property Count As Integer
'使用
Dim instance As Configurations
Dim value As Integer
value = instance.Count
int Count { get; }
property int Count {
int get ();
}
function get Count () : int
プロパティ値
型 : System.Int32
コレクション内のオブジェクトの数を示す整数。
例
public void CodeExample(DTE2 dte, AddIn addin)
{
try
{ // Make sure you have a solution loaded into Visual Studio
// before running the following example. Make sure the "Any
// CPU" option is marked in the Configuration Manager dialog box.
Configurations configs = null;
if (dte.Solution.Projects.Count > 0)
{
configs = dte.Solution.Projects.Item(1).ConfigurationManager.Platform("Any CPU");
// Show the number of configurations in the collection.
MessageBox.Show(configs.Count.ToString());
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。