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

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

public static AddForEachNode ( this parent, object>.Func valuesToAdd, string>.Func toStringFunc ) : TreeNode
parent this
valuesToAdd object>.Func
toStringFunc string>.Func
Результат System.Windows.Forms.TreeNode
        public static TreeNode AddForEachNode(this TreeNode parent, Func<TreeNodeTag, object> valuesToAdd, Func<object, string> toStringFunc)
        {
            return AddForEachNode(parent, valuesToAdd, toStringFunc, TreeNodeType.PropertyGrid);
        }

Same methods

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