GitSharp.Core.ObjectDatabase.exists C# (CSharp) Метод

exists() публичный Метод

Gets if this database is already created; If it returns false, the caller should invoke create to create this database location.
public exists ( ) : bool
Результат bool
        public virtual bool exists()
        {
            return true;
        }

Usage Example

Пример #1
0
 public override bool exists()
 {
     return(_objectDatabase.exists());
 }