WriteToFile() public method

Writes this instance to a file.
public WriteToFile ( String path ) : void
path String The path.
return void
Esempio n. 1
0
 public void WriteInfoPList(PListDocument document)
 {
     String path = Path.Combine(this.ContentsDirectory, "Info.plist");
     document.WriteToFile(path);
 }