SIL.CoreImpl.PalasoWritingSystemManager.LangTagInUse C# (CSharp) 메소드

LangTagInUse() 개인적인 메소드

Determines whether or not the specified language tag is in use by another writing system in either the local or global writing system store.
private LangTagInUse ( string identifier ) : bool
identifier string The language tag to check.
리턴 bool
		private bool LangTagInUse(string identifier)
		{
			lock (m_syncRoot)
				return m_localStore.Contains(identifier) || (m_globalStore != null && m_globalStore.Contains(identifier));
		}