Revenj.TreePath.Create C# (CSharp) Method

Create() public static method

Create path from string value, eg: top.middle.bottom
public static Create ( string path ) : TreePath
path string string representation
return TreePath
        public static TreePath Create(string path)
        {
            if (string.IsNullOrEmpty(path)) return Empty;
            var parts = path.Split('.');
            CheckParts(parts);
            return new TreePath(path, parts);
        }