• 大小: 30KB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-05-20
  • 语言: C#
  • 标签: pi  多线程  

资源简介

C# 2.0 用多线程计算任意位的pi值是Addison Wesley - Windows Forms 2.0 Programming的第18章Multithreaded User Interfaces(多线程下的用户界面)配套源码

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace piCalculator
{
    static class Program
    {
        /// 
        /// 应用程序的主入口点。
        /// 

        [STAThread]
        static void Main()
        {
            Application.EnableVisualstyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new SyncCalcPiForm());
        }
    }
}

评论

共有 条评论