System.Globalization.LanguageCollector.GetAllCultures C# (CSharp) 메소드

GetAllCultures() 개인적인 메소드

private GetAllCultures ( ) : Hashtable
리턴 System.Collections.Hashtable
		private Hashtable GetAllCultures() {
			CultureInfo[] cis = CultureInfo.GetCultures(CultureTypes.AllCultures);
			Hashtable allCultures = new Hashtable(cis.Length);
			foreach (CultureInfo ci in cis) {
				allCultures.Add(ci.Name, ci);
			}
			return allCultures;
		}