當地語系化的中性資源語言
NeutralResourcesLanguageAttribute 類別會指定主要組件中所包含之資源的文化特性。 這個屬性 (Attribute) 是用來提升效能,讓 ResourceManager 物件不需要搜尋主要組件中所包含的資源。
下列程式碼顯示如何設定中性資源語言。 您可將這段程式碼放入建置指令碼或是 AssemblyInfo.vb 或 AssemblyInfo.cs 檔中。
' Set neutral resources language for assembly.
<Assembly: NeutralResourcesLanguageAttribute("en")>
// Set neutral resources language for assembly.
[assembly: NeutralResourcesLanguageAttribute("en")]