3 writes to pszText
System.Windows.Forms (2)
System\Windows\Forms\Controls\TreeView\TreeNode.cs (2)
1841tvis.item.pszText = (char*)Marshal.StringToHGlobalUni(_text); 2145item.pszText = (char*)Marshal.StringToHGlobalUni(_text);
System.Windows.Forms.Tests (1)
System\Windows\Forms\TreeNodeTests.cs (1)
4460pszText = textBuffer
4 references to pszText
System.Windows.Forms (3)
System\Windows\Forms\Controls\TreeView\TreeNode.cs (2)
1891Marshal.FreeCoTaskMem((nint)tvis.item.pszText.Value); 2183Marshal.FreeCoTaskMem((nint)item.pszText.Value);
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
2589string newText = nmtvdi.item.pszText.ToString();
System.Windows.Forms.Tests (1)
System\Windows\Forms\TreeNodeTests.cs (1)
4463Assert.Equal(expected, new string((char*)item.pszText));