Esempio n. 1
0
    /// <summary>
    /// Returns the full path to the specified <see cref="ComboTreeNode"/>.
    /// </summary>
    /// <param name="node"></param>
    /// <returns></returns>
    public string GetFullPath(ComboTreeNode node)
    {
        if (node == null)
        {
            throw new ArgumentNullException("node");
        }

        return(node.GetFullPath(_pathSeparator, _useNodeNamesForPath));
    }
Esempio n. 2
0
    /// <summary>
    /// Returns the full path to the specified <see cref="ComboTreeNode"/>.
    /// </summary>
    /// <param name="node"></param>
    /// <returns></returns>
    public string GetFullPath(ComboTreeNode node)
    {
        if (node == null) throw new ArgumentNullException("node");

        return node.GetFullPath(_pathSeparator, _useNodeNamesForPath);
    }