terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ WriteAllBytes()

static void System.IO.File.WriteAllBytes ( string path,
byte[] bytes )
inlinestatic

Definition at line 200 of file File.cs.

201 {
202 while (path != null)
203 {
204 if (path._stringLength == 0)
205 {
206 return;
207 }
208 if (bytes != null)
209 {
210 File.InternalWriteAllBytes(path, bytes);
211 return;
212 }
213 }
214 }

References System.IO.File.InternalWriteAllBytes().

Referenced by CSVWriter.CloseStreams(), and DefaultFileAPI.WriteFile().