Reference.Culture 属性
更新:2007 年 11 月
获取引用的区域性字符串。只读。
命名空间: VSLangProj
程序集: VSLangProj(在 VSLangProj.dll 中)
语法
声明
ReadOnly Property Culture As String
用法
Dim instance As Reference
Dim value As String
value = instance.Culture
string Culture { get; }
property String^ Culture {
String^ get ();
}
function get Culture () : String
属性值
返回值取决于引用类型。
引用类型 |
返回的值 |
---|---|
程序集 |
“区域性”字符串。例如,“EN-US”代表“美国英语”。 |
COM |
区域设置 ID。该字符串是引用的类型库的十六进制区域设置 ID。例如,“0”代表多语言,“409”代表“美国英语”。 |
备注
区域性信息包括语言和日历规范。有关有效字符串的信息,请参见 CultureInfo。
示例
' Macro Editor
Imports VSLangProj
Public Sub DisplayCultures()
' The first project is a Visual Basic or C# project.
Dim vsProject As VSProject = _
CType(DTE.Solution.Projects.Item(1).Object, VSProject)
Dim aRef As Reference
For Each aref In vsProject.References
MsgBox(aRef.Name & " " & aRef.Culture)
Next
End Sub
权限
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。