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

◆ GetTempPath() [1/2]

static string System.IO.Path.GetTempPath ( )
inlinestatic

Definition at line 942 of file Path.cs.

943 {
944 Span<char> initialBuffer = stackalloc char[260];
945 ValueStringBuilder builder = new ValueStringBuilder(initialBuffer);
946 GetTempPath(ref builder);
947 string result = PathHelper.Normalize(ref builder);
948 builder.Dispose();
949 return result;
950 }
static string GetTempPath()
Definition Path.cs:942

References System.Text.ValueStringBuilder.Dispose(), System.IO.Path.GetTempPath(), and System.IO.PathHelper.Normalize().

Referenced by System.IO.Path.GetTempFileName(), and System.IO.Path.GetTempPath().