Пример #1
0
 public static void Write <T>(string relativePath, T file) where T : IRedOwlFile
 {
     Write(relativePath, RedOwlTools.ToBytes(file));
 }
Пример #2
0
 public static void Read <T>(string relativePath, out T file) where T : IRedOwlFile
 {
     file = RedOwlTools.FromBytes <T>(Read(relativePath));
 }