/// <summary> /// Write to a file /// </summary> public static void Write(string fileName, string contents) { FileCache.Write(fileName, contents); }
/// <summary> /// Read from a file and keep a cached copy of its content /// </summary> public static string Read(string fileName) { return(FileCache.Read(fileName)); }