BinaryFileInspectorGUI.Inspector.AddFileLine C# (CSharp) Méthode

AddFileLine() private méthode

private AddFileLine ( string data, IBfsType type, TreeNode parent ) : void
data string
type IBfsType
parent TreeNode
Résultat void
        private void AddFileLine(string data, IBfsType type, TreeNode parent)
        {
            TreeNode node = new TreeNode(data);
            node.Tag = type;
            parent.Nodes.Add(node);
        }