Init() 공개 메소드

public Init ( ) : bool
리턴 bool
예제 #1
0
 public bool Initialise()
 {
     storeManager = new ObjectStoreManager();
     bool result = storeManager.Init();
     DebugNormal("Initialise result: " + result.ToString());
     return result;
 }
예제 #2
0
파일: MCData.cs 프로젝트: piet5211/RPLiveTV
        public bool Initialize(ref string key)
        {
            if (key != "Wilkinson") return false;

            DebugNormal("Initialising Store.");
            storeManager = new ObjectStoreManager();
            storeManager.DebugReport += new EventHandler<DebugReportEventArgs>(storeManager_DebugReport);
            // Initialise Store Manager
            return storeManager.Init();
        }