Esempio n. 1
0
 /// <summary>Create new cache file edit instance with custom path.</summary>
 /// <param name="customPath">Custom cache file path.</param>
 public Cache(string customPath)
 {
     _filePath = customPath;
     _data     = GetDataFromFile();
 }
Esempio n. 2
0
 /// <summary>
 /// Create new cache file edit instance with default path. <br/>
 /// Default path = ".data\\.cache".
 /// </summary>
 public Cache()
 {
     _filePath = DEFAULT_FILE_PATH;
     _data     = GetDataFromFile();
 }