当前位置: 首页>>代码示例>>C#>>正文


C# WorldEditor.Start方法代码示例

本文整理汇总了C#中Multiverse.Tools.WorldEditor.WorldEditor.Start方法的典型用法代码示例。如果您正苦于以下问题:C# WorldEditor.Start方法的具体用法?C# WorldEditor.Start怎么用?C# WorldEditor.Start使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Multiverse.Tools.WorldEditor.WorldEditor的用法示例。


在下文中一共展示了WorldEditor.Start方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Main

        static void Main(string[] args)
        {
            try
            {
                String execDir = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf(System.IO.Path.DirectorySeparatorChar));
                Directory.SetCurrentDirectory(execDir);
                // Changes the CurrentCulture of the current thread to the invariant culture.
                Thread.CurrentThread.CurrentCulture = new CultureInfo("", false);
                int processor = 1;
                foreach (ProcessThread thread in Process.GetCurrentProcess().Threads)
                {
                    thread.ProcessorAffinity = (IntPtr)processor;
                }

                if (!Directory.Exists(ConfigFolder))
                    Directory.CreateDirectory(ConfigFolder);
                if (!Directory.Exists(LogFolder))
                    Directory.CreateDirectory(LogFolder);
                LogUtil.InitializeLogging(Path.Combine(ConfigFolder, "LogConfig.xml"), "DefaultLogConfig.xml", FallbackLogfile);

                WorldEditor worldEditor = new WorldEditor();
                List<string> log = RepositoryClass.Instance.CheckForValidRepository();
                if (log.Count != 0)
                    return;

                if (worldEditor.Quit)
                {
                    return;
                }

                if (args.Length > 0) {
                    ProcessArgs(args, worldEditor);
                }

                worldEditor.Show();

                worldEditor.Start(args);
            }
            catch (Exception ex)
            {
                // try logging the error here first, before Root is disposed of
                LogUtil.ExceptionLog.Error(ex.ToString());
                throw;
            }
        }
开发者ID:ufosky-server,项目名称:MultiversePlatform,代码行数:45,代码来源:Program.cs


注:本文中的Multiverse.Tools.WorldEditor.WorldEditor.Start方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。