ConfigurationManager.ConfigurationRowNames 属性
获取由项目或项目项的所有已定义配置名组成的数组。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
ReadOnly Property ConfigurationRowNames As Object
Get
Object ConfigurationRowNames { get; }
property Object^ ConfigurationRowNames {
Object^ get ();
}
abstract ConfigurationRowNames : Object
function get ConfigurationRowNames () : Object
属性值
类型:System.Object
由项目或项目项的所有已定义配置名组成的数组。
示例
public void CodeExample(DTE2 dte, AddIn addin)
{ // Make sure you have a solution loaded into Visual Studio
// before running the following example.
try
{
ConfigurationManager configmgr;
Array arrayCRN;
if (dte.Solution.Projects.Count > 0)
{
configmgr = dte.Solution.Projects.Item(1).ConfigurationManager;
// Show all defined configuration names for the parent
// object of this Configuration Manager.
arrayCRN = (Array)configmgr.ConfigurationRowNames;
string cfnames = "Configuration Row Names: \n";
foreach (string n in arrayCRN)
cfnames = cfnames + n + "\n";
MessageBox.Show(cfnames);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。