3 writes to _charBuffer
System.Windows.Forms (3)
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.cs (3)
518
_charBuffer
= GC.AllocateArray<char>(newBufferSize, pinned: true);
744
_charBuffer
= GC.AllocateArray<char>(FileBufferSize, pinned: true);
778
_charBuffer
= null;
4 references to _charBuffer
System.Windows.Forms (4)
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.cs (4)
520
fixed (char* buffer =
_charBuffer
)
745
FileName.CopyTo(
_charBuffer
);
749
fixed (char* buffer =
_charBuffer
)
763
nMaxFile = (uint)
_charBuffer
.Length,