ConfigurationManager.PlatformNames 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取所有可用平台的列表。
public:
property System::Object ^ PlatformNames { System::Object ^ get(); };
public:
property Platform::Object ^ PlatformNames { Platform::Object ^ get(); };
[System.Runtime.InteropServices.DispId(11)]
public object PlatformNames { [System.Runtime.InteropServices.DispId(11)] get; }
[<System.Runtime.InteropServices.DispId(11)>]
[<get: System.Runtime.InteropServices.DispId(11)>]
member this.PlatformNames : obj
Public ReadOnly Property PlatformNames As 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 arrayPN;
if (dte.Solution.Projects.Count > 0)
{
configmgr = dte.Solution.Projects.Item(1).ConfigurationManager;
// Show all available platforms.
arrayPN = (Array)configmgr.PlatformNames;
string pfnames = "Platform Names: \n";
foreach (string p in arrayPN)
pfnames = pfnames + p + "\n";
MessageBox.Show(pfnames);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
注解
此列表包含所有平台名称,这些名称包含与此对象关联的项目的生成设置 ConfigurationManager 。