Exemplo n.º 1
0
 internal IniFile(SmbFile path, string commentString, Action onExternalModification)
 {
     Path                   = path;
     CommentString          = commentString;
     OnExternalModification = onExternalModification;
     Data                   = new ValueCache <IniData>(() => Path.FromIni(CommentString));
     Watcher                = CreateWatcher(path);
 }