program.cs

来自「AI : Neural Network for beginners」· CS 代码 · 共 29 行

CS
29
字号
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace GA_ANN_XOR
{
    #region Program CLASS
    /// <summary>
    /// Simply provides the main entry point for the application.
    /// Creates a new frmMain form
    /// </summary>
    public static class Program
    {

        #region Main entry point
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new frmMain());
        }
        #endregion
    }
    #endregion
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?