SkipComment() public method

public SkipComment ( ) : string
return string
Example #1
0
 static void RecordCommentVariable( List< string > _variables, string _token, Parser P )
 {
     string	comment = _token + P.SkipComment();
     _variables.Add( comment );
 }
Example #2
0
 void RecordCommentOption( string _token, Parser P )
 {
     string	comment = _token + P.SkipComment();
     m_options.m_unknownOptions.Add( comment );
 }