예제 #1
0
 public override void force_reload()
 {
     lock (this) {
         entries_.Clear();
         string_.clear();
     }
 }
예제 #2
0
 // forces the WHOLE FILE to be reloaded
 //
 // be VERY careful calling this - I should call this only when the syntax has changed
 public override void force_reload()
 {
     lock (this) {
         was_last_line_incomplete_ = DateTime.MinValue;
         lines_.Clear();
         up_to_date_ = false;
     }
     string_.clear();
 }