1 write to _buffer
System.Windows.Forms (1)
System\Windows\Forms\ToolTip\ToolTipBuffer.cs (1)
27_buffer = GC.AllocateUninitializedArray<char>(text.Length + 1, pinned: true);
5 references to _buffer
System.Windows.Forms (5)
System\Windows\Forms\ToolTip\ToolTipBuffer.cs (5)
14fixed (char* c = _buffer) 25if (_buffer is null || _buffer.Length < text.Length + 1) 31text.AsSpan().CopyTo(_buffer); 32_buffer[text.Length] = '\0';