Git.Core.ObjectStore.LsTree C# (CSharp) Method

LsTree() public method

public LsTree ( string hexstring ) : void
hexstring string
return void
        public void LsTree(string hexstring)
        {
            Tree tree = (Tree) Get (hexstring);

            LsTree (tree);
        }

Same methods

ObjectStore::LsTree ( Tree tree ) : void

Usage Example

Example #1
0
 public static void LsTreeTest(string tree, string path)
 {
     ObjectStore store = new ObjectStore (path);
     store.LsTree (tree);
 }