Program.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:1k
源码类别:

搜索引擎

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4. /*
  5.       '       迅龙中文分类搜索引擎  v0.6
  6.       '
  7.       '        LGPL  许可发行
  8.       '
  9.       '       宁夏大学  张冬 康彩  zd4004@163.com
  10.       ' 
  11.       '        官网 http://blog.163.com/zd4004/
  12.  */
  13. namespace XunLong.HTMLMODEL.TEST
  14. {
  15.     static class Program
  16.     {
  17.         /// <summary>
  18.         /// 应用程序的主入口点。
  19.         /// </summary>
  20.         [STAThread]
  21.         static void Main(string[] args)
  22.         {
  23.             Console.WriteLine("  >------------------------------------------<");
  24.             Console.WriteLine("  >------------------------------------------<");
  25.             Console.WriteLine("  >          列表中文搜索引擎_组件v0.3       <");
  26.             Console.WriteLine("  >------------------------------------------<");
  27.             Console.WriteLine("  >------------------------------------------<");
  28.             string k_c_path = args[0];
  29.             Console.WriteLine("--》加载配置文件: " + k_c_path);
  30.         //    XunLong.CongifData.Config.InitConfigData(k_c_path);
  31.             Application.EnableVisualStyles();
  32.             Application.SetCompatibleTextRenderingDefault(false);
  33.             Application.Run(new FormTestInit(k_c_path));
  34.         }
  35.     }
  36. }