Revenj.TreePath.TreePath C# (CSharp) Method

TreePath() public method

Construct path from string value, eg: top.middle.bottom
public TreePath ( string path ) : System
path string string representation
return System
        public TreePath(string path)
        {
            if (string.IsNullOrEmpty(path))
            {
                Value = string.Empty;
                Parts = Empty.Parts;
            }
            else
            {
                this.Value = path;
                this.Parts = Value.Split('.');
                CheckParts(Parts);
            }
        }

Same methods

TreePath::TreePath ( string value, string parts ) : System