本文整理汇总了C#中System.Logger.Pause方法的典型用法代码示例。如果您正苦于以下问题:C# Logger.Pause方法的具体用法?C# Logger.Pause怎么用?C# Logger.Pause使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Logger
的用法示例。
在下文中一共展示了Logger.Pause方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main(string[] args)
{
string initpath = "./";
string outpath = "../bin/script02.CSLEDll.bytes";
var logger = new Logger();
ScriptEnv.Instance.Reset(logger);
logger.Log_Warn("Begin Script Test.");
string scriptpath = System.IO.Path.GetFullPath(initpath);//需要修改
logger.Log("ScriptPath=" + scriptpath);
logger.Log_Warn("Please Check if the path is correct.Press any key to continue.");
logger.Pause();
string[] filelist = System.IO.Directory.GetFiles(scriptpath, "*.cs", System.IO.SearchOption.AllDirectories);
logger.Log_Warn("got code file:" + filelist.Length);
logger.Log_Warn("BeginTokenParse");
Dictionary<string, IList<CSLE.Token>> project = new Dictionary<string, IList<CSLE.Token>>();
foreach (var f in filelist)
{
string code = System.IO.File.ReadAllText(f);
var tokens = ScriptEnv.Instance.scriptEnv.tokenParser.Parse(code);
var filename = System.IO.Path.GetFileName(f);
project[filename] = tokens;
logger.Log("TokenParse:" + filename + " len:" + code.Length + " token:" + tokens.Count);
}
logger.Log_Warn("TokenParser Finish.");
logger.Log_Warn("BeginCompile");
ScriptEnv.Instance.scriptEnv.Project_Compiler(project, true);
logger.Log_Warn("EndCompile");
using (System.IO.Stream s = System.IO.File.Open(outpath, System.IO.FileMode.Create))
{
ScriptEnv.Instance.scriptEnv.Project_PacketToStream(project, s);
}
logger.Log("Write script.CSLEDll.bytes in:" + outpath);
logger.Log_Warn("Test end.Press any key to exit.");
logger.Pause();
}