示例#1
0
        public Comment(string file)
        {
            /*
            * Psuedo code:
            * 1. Set text
            * 2. Strip and compile all comments from text
            * 3. Return the striped text and the result
            */

            scanner = new Scanner (file);
            while(!scanner.IsEOF){
                scanner.NextToken ();
            }
        }
示例#2
0
 public Comment()
 {
     scanner = new Scanner ();
 }