Example #1
0
 protected virtual bool ReadDashDashComment()
 {
     Splitter.Append(Current);
     while (Splitter.Next())
     {
         Splitter.Append(Current);
         if (EndOfLine)
         {
             break;
         }
     }
     //We should be EndOfLine or EndOfScript here.
     Splitter.SetParser(new SeparatorLineReader(Splitter));
     return(false);
 }