AsmResolver.TreeBuilder.AddForEachNode C# (CSharp) Метод

AddForEachNode() публичный статический Метод

public static AddForEachNode ( this parent, object>.Func valuesToAdd ) : TreeNode
parent this
valuesToAdd object>.Func
Результат 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