OleViewDotNet.COMRegistryViewer.CreateClsidNode C# (CSharp) Méthode

CreateClsidNode() private static méthode

private static CreateClsidNode ( COMCLSIDEntry ent ) : TreeNode
ent COMCLSIDEntry
Résultat 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;
        }