Пример #1
0
 /// <summary>
 /// Do exit the application. in android,
 /// some machine can't exit normally when call ApplicationQuit() function.
 /// Call the DoExit instead.
 /// 退出应用。 在安卓 一些机器使用ApplicationQuit()无法正常退出,那么需要使用DoExit方法。
 /// </summary>
 public static void DoExit()
 {
     if (ms_OnOrbbecExitAppCallBack != null)
     {
         ms_OnOrbbecExitAppCallBack();
     }
     OrbbecWrapper.DoExit();
 }