OleViewDotNet.COMRegistryViewer.CreateClsidNode C# (CSharp) Method

CreateClsidNode() private static method

private static CreateClsidNode ( COMCLSIDEntry ent ) : TreeNode
ent COMCLSIDEntry
return System.Windows.Forms.TreeNode
        private static TreeNode CreateClsidNode(COMCLSIDEntry ent)
        {
            TreeNode currNode = new TreeNode(ent.Name, ClassIcon, ClassIcon);
            currNode.ToolTipText = BuildCLSIDToolTip(ent);
            currNode.Tag = ent;
            currNode.Nodes.Add("IUnknown");

            return currNode;
        }