Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CreateText()

static StreamWriter System.IO.File.CreateText ( string path)
inlinestatic

Definition at line 29 of file File.cs.

30 {
31 if (path == null)
32 {
33 throw new ArgumentNullException("path");
34 }
35 return new StreamWriter(path, append: false);
36 }