TalkBot.Util.SpeechItemsPath C# (CSharp) Method

SpeechItemsPath() public static method

public static SpeechItemsPath ( ) : string
return string
        public static string SpeechItemsPath()
        {
            string documentsDir = Environment.GetFolderPath (Environment.SpecialFolder.Personal);
            string speechItemsPath = Path.Combine (documentsDir, "speechitems.bin");

            return speechItemsPath;
        }