SIL.CoreImpl.SpellingHelper.GetDictionaryIds C# (CSharp) Method

GetDictionaryIds() public static method

Get all the IDs that will produce dictionaries (without any tricks like prefix matching).
public static GetDictionaryIds ( ) : IEnumerable
return IEnumerable
		public static IEnumerable<string> GetDictionaryIds()
		{
			return from path in Directory.GetFiles(GetSpellingDirectoryPath(), "*.dic")
				where IsValidDictionary(path)
				select DictIdFromPath(path);
		}