Exemplo n.º 1
0
 public static void SavePath(Path3D path, string filePath)
 {
     using (StreamWriter writer = new StreamWriter(filePath))
     {
         writer.Write(path.ToString());
     }
 }
Exemplo n.º 2
0
Arquivo: Storage.cs Projeto: T316/OOP
 public static void SavePath(Path3D path, string filePath)
 {
     using (StreamWriter writer = new StreamWriter(filePath))
     {
         writer.Write(path.ToString());
     }
 }
Exemplo n.º 3
0
 public static void SavePathToFile(string file, Path3D path)
 {
     System.IO.File.WriteAllText(file, path.ToString());
 }
Exemplo n.º 4
0
 public static void SavePathToFile(string file, Path3D path)
 {
     System.IO.File.WriteAllText(file, path.ToString());
 }