Beispiel #1
0
        public string LoadTextFile(string theFile)
        {
            if (loader == null)
            {
                loader = new Loader();
            }

            loader.SetFilePath(theFile);
            loader.ExtractFileContents();
            return(loader.GetFileContents());
        }