Пример #1
0
        public void ParseContent()
        {
            fileContents = File.OpenText(absoluteFilePath).ReadToEnd();
            InkIncludeParser includeParser = new InkIncludeParser(fileContents);

            includePaths = includeParser.includeFilenames;
        }
Пример #2
0
        public void ParseContent()
        {
            InkIncludeParser includeParser = new InkIncludeParser(GetFileContents());

            includePaths = includeParser.includeFilenames;
        }
Пример #3
0
 // Parses the ink file to get any info we need.
 // Currently this only scans for includePaths, which are later used by FindIncludedFiles.
 public void ParseContent()
 {
     includePaths.Clear();
     includePaths.AddRange(InkIncludeParser.ParseIncludes(GetFileContents()));
 }
Пример #4
0
 public void ParseContent()
 {
     fileContents = File.OpenText(absoluteFilePath).ReadToEnd();
     InkIncludeParser includeParser = new InkIncludeParser(fileContents);
     includePaths = includeParser.includeFilenames;
 }