Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

IFileIO.cs 292B

123456789101112
  1. namespace Packages.Rider.Editor.ProjectGeneration
  2. {
  3. internal interface IFileIO
  4. {
  5. bool Exists(string fileName);
  6. string ReadAllText(string fileName);
  7. void WriteAllText(string path, string content);
  8. string EscapedRelativePathFor(string file, string projectDirectory);
  9. }
  10. }