首页 > 其他 > 详细

第 2 章 编写 C# 程序

时间:2014-06-07 02:53:30      阅读:336      评论:0      收藏:0      [点我收藏+]

2.1  Visual Studio 2005开发环境

2.2  控制台应用程序

  试试看:创建一个简单的控制台应用程序

bubuko.com,布布扣
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            // Output text to the screen
            Console.WriteLine("The first app in Beginning C# Programming!");
            Console.ReadKey();
        }
    }
}
View Code

   控制台窗口会在执行完毕后立即关闭,使用 Console.ReadKey(); 告诉代码在结束钱等待按键。

2.3  Windows Forms应用程序

  试试看:创建一个简单的Windows应用程序

bubuko.com,布布扣
 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Windows.Forms;
 9 
10 namespace WindowsFormsApplication1
11 {
12     public partial class Form1 : Form
13     {
14         public Form1()
15         {
16             InitializeComponent();
17         }
18 
19         private void button1_Click(object sender, EventArgs e)
20         {
21             MessageBox.Show("The first Windows app in the book!");
22         }
23     }
24 }
View Code

 

 

第 2 章 编写 C# 程序,布布扣,bubuko.com

第 2 章 编写 C# 程序

原文:http://www.cnblogs.com/liuliu3/p/3756194.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!