资源简介

C#聊天机器人--含源代码 C#聊天机器人--含源代码 C#聊天机器人--含源代码

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;

namespace 聊天机器人
{
    partial class AboutMe : Form
    {
        public AboutMe()
        {
            InitializeComponent();
            this.Text = String.Format(“关于 {0} “ Assemblytitle);
            this.labelProductName.Text = AssemblyProduct;
            this.labelVersion.Text = String.Format(“版本 {0} “ AssemblyVersion);
            this.labelCopyright.Text = AssemblyCopyright;
            this.labelCompanyName.Text = AssemblyCompany;
            this.textBoxDescription.Text = “    本软件由Liamson结合所学课程研发,采用C#开发语言及目前流行的分词技术,其界面模仿QQ聊天界面。由于本系统所学知识较少,但他具备学习功能,广大网友可以教他学习,但为增强娱乐性及使用性,请网友们不要教他粗口,小L的健康成长需要您的细心呵护和教导!感谢网友对我的支持!“;
        }

        #region 程序集属性访问器

        public string Assemblytitle
        {
            get
            {
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblytitleAttribute) false);
                if (attributes.Length > 0)
                {
                    AssemblytitleAttribute titleAttribute = (AssemblytitleAttribute)attributes[0];
                    if (titleAttribute.title != ““)
                    {
                        return titleAttribute.title;
                    }
                }
                return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().Codebase);
            }
        }

        public string AssemblyVersion
        {
            get
            {
                return Assembly.GetExecutingAssembly().GetName().Version.ToString();
            }
        }

        public string AssemblyDescription
        {
            get
            {
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute) false);
                if (attributes.Length == 0)
                {
                    return ““;
                }
                return ((AssemblyDescriptionAttribute)attributes[0]).Description;
            }
        }

        public string AssemblyProduct
        {
            get
            {
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute) false);
                if (attributes.Length == 0)
                {
                    return ““;
                }
                return ((AssemblyProductAttribute)attributes[0]).Product;
            }
        }

        public string AssemblyCopyright
        {
            get
            {
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute) false);
                if (attributes.Length == 0)
                {
                    return ““;
                }
                return ((AssemblyCopyr

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3813  2011-07-18 00:08  聊天机器人\聊天机器人\AboutMe.cs

     文件      10715  2011-07-18 00:07  聊天机器人\聊天机器人\AboutMe.Designer.cs

     文件       5817  2011-07-18 00:07  聊天机器人\聊天机器人\AboutMe.resx

     文件       5516  2011-07-20 23:48  聊天机器人\聊天机器人\Admin.cs

     文件       4152  2011-07-20 23:48  聊天机器人\聊天机器人\Admin.Designer.cs

     文件       5814  2011-07-20 23:48  聊天机器人\聊天机器人\Admin.resx

     文件   11186176  2011-07-20 23:39  聊天机器人\聊天机器人\bin\Debug\data\KB.dll

     文件    2382850  2011-07-04 12:16  聊天机器人\聊天机器人\bin\Debug\data\sDict.dll

     文件        886  2006-06-13 17:49  聊天机器人\聊天机器人\bin\Debug\data\sNoise.dll

     文件        291  2006-08-10 01:23  聊天机器人\聊天机器人\bin\Debug\data\sNumber.dll

     文件       2454  2006-06-21 19:15  聊天机器人\聊天机器人\bin\Debug\data\sPrefix.dll

     文件        154  2006-06-20 21:12  聊天机器人\聊天机器人\bin\Debug\data\sWord.dll

     文件      24576  2011-07-06 19:13  聊天机器人\聊天机器人\bin\Debug\ShootSeg 1.0.dll

     文件      42496  2011-07-06 19:13  聊天机器人\聊天机器人\bin\Debug\ShootSeg 1.0.pdb

     文件     395776  2011-07-23 23:03  聊天机器人\聊天机器人\bin\Debug\聊天机器人.exe

     文件      93696  2011-07-23 23:03  聊天机器人\聊天机器人\bin\Debug\聊天机器人.pdb

     文件      14328  2011-08-03 20:29  聊天机器人\聊天机器人\bin\Debug\聊天机器人.vshost.exe

     文件        490  2009-06-11 05:14  聊天机器人\聊天机器人\bin\Debug\聊天机器人.vshost.exe.manifest

     文件       3116  2011-04-23 20:36  聊天机器人\聊天机器人\Calculator\About.cs

     文件       4858  2011-04-23 20:26  聊天机器人\聊天机器人\Calculator\About.Designer.cs

     文件     155637  2011-04-23 20:19  聊天机器人\聊天机器人\Calculator\About.resx

     文件     393728  2011-04-23 21:36  聊天机器人\聊天机器人\Calculator\bin\Debug\calculator.exe

     文件      60928  2011-04-23 21:36  聊天机器人\聊天机器人\Calculator\bin\Debug\calculator.pdb

     文件      14328  2011-04-24 14:19  聊天机器人\聊天机器人\Calculator\bin\Debug\calculator.vshost.exe

     文件        490  2009-06-11 05:14  聊天机器人\聊天机器人\Calculator\bin\Debug\calculator.vshost.exe.manifest

     文件      14328  2011-04-22 22:57  聊天机器人\聊天机器人\Calculator\bin\Debug\WindowsFormsApplication1.vshost.exe

     文件        490  2009-06-11 05:14  聊天机器人\聊天机器人\Calculator\bin\Debug\WindowsFormsApplication1.vshost.exe.manifest

     文件       4479  2011-04-23 20:26  聊天机器人\聊天机器人\Calculator\Calculator.csproj

     文件      99678  2011-04-23 00:15  聊天机器人\聊天机器人\Calculator\Calculator.ico

     文件      19235  2011-04-23 21:36  聊天机器人\聊天机器人\Calculator\Form1.cs

............此处省略87个文件信息

评论

共有 条评论