AsmResolver.TreeBuilder.AddForEachNode C# (CSharp) Method

AddForEachNode() public static method

public static AddForEachNode ( this parent, object>.Func valuesToAdd ) : TreeNode
parent this
valuesToAdd object>.Func
return System.Windows.Forms.TreeNode
        public static TreeNode AddForEachNode(this TreeNode parent, Func<TreeNodeTag, object> valuesToAdd)
        {
            return AddForEachNode(parent, valuesToAdd, (obj) => { return obj.ToString(); });
        }

Same methods

TreeBuilder::AddForEachNode ( this parent, object>.Func valuesToAdd, string>.Func toStringFunc ) : TreeNode
TreeBuilder::AddForEachNode ( this parent, object>.Func valuesToAdd, string>.Func toStringFunc, TreeNodeType type ) : TreeNode