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