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

◆ FileName

unsafe ReadOnlySpan<char> Interop.NtDll.FILE_FULL_DIR_INFORMATION.FileName
get

Definition at line 1522 of file Interop.cs.

1523 {
1524 get
1525 {
1526 fixed (char* pointer = &_fileName)
1527 {
1528 return new ReadOnlySpan<char>(pointer, (int)FileNameLength / 2);
1529 }
1530 }
1531 }