Beispiel #1
0
        internal LineReader OpenLineReader(string folder, string name, TextReaderOptions options = 0)
        {
            Stream s = _fileLoader.OpenFile(folder, name);

            if (s != null)
            {
                return(new LineReader(s, options));
            }
            Error("Unable to find file '{0}'", name);
            return(null);
        }