Git.Core.ObjectStore.LsTree C# (CSharp) Méthode

LsTree() public méthode

public LsTree ( string hexstring ) : void
hexstring string
Résultat void
        public void LsTree(string hexstring)
        {
            Tree tree = (Tree) Get (hexstring);

            LsTree (tree);
        }

Same methods

ObjectStore::LsTree ( Tree tree ) : void

Usage Example

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