示例#1
0
        private static bool OpenFromConsoler()
        {
            string logText = ConsolerHelper.GetLog();

            if (string.IsNullOrEmpty(logText))
            {
                return(false);
            }
            if (GlobalLogHelper.Open(logText))
            {
                return(true);
            }
            if (LuaConsoler.OpenFromConsoler(logText))
            {
                return(true);
            }
            return(false);
        }
示例#2
0
 private static bool OpenFromProject(int instanceId)
 {
     return(LuaConsoler.OpenFromProject(instanceId));
 }