System.Globalization.LanguageCollector.GetAllCultures C# (CSharp) Method

GetAllCultures() private method

private GetAllCultures ( ) : Hashtable
return 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;
		}