Beispiel #1
0
 public LspFile(string fullPath, LspManager manager)
 {
     FullPath     = fullPath;
     Manager      = manager;
     FileChanged += (file, when) => UpdateReferenceList();
     UpdateReferenceList();
 }
Beispiel #2
0
 public LspFile(FileInfo fullPath, LspManager manager) : this(fullPath.FullName, manager)
 {
 }