1 / 7

C# 程序设计上机实习( 01 )

C# 程序设计上机实习( 01 ). 面向对象和组件. 本节实习目标. 通过 VS2010 向导创建一个控制台应用程序 了解应用程序结构 熟悉使用开发帮助文档 了解 VS2010 的界面以及操作 自己操作练习教材第二章的例子. 通过 VS2010 向导创建一个控制台应用程序. 应用程序结构. using System ; // 引用名为 System 的命名空间 namespace firstapp // 定义名为 firstapp 的命名空间 { class Program // 定义名为 Program 的类

Download Presentation

C# 程序设计上机实习( 01 )

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. C#程序设计上机实习(01) 面向对象和组件

  2. 本节实习目标 • 通过VS2010向导创建一个控制台应用程序 • 了解应用程序结构 • 熟悉使用开发帮助文档 • 了解VS2010的界面以及操作 • 自己操作练习教材第二章的例子

  3. 通过VS2010向导创建一个控制台应用程序

  4. 应用程序结构 • using System; //引用名为 System 的命名空间 • namespace firstapp //定义名为 firstapp 的命名空间 • { • class Program //定义名为 Program 的类 • { • static void Main(string[] args) //定义入口函数,必须为static,名称为Main • { • Console.WriteLine(“Hello World”); //调用Console类的 WriteLine 方法 • } • } • }

  5. 应用程序结构

  6. 熟悉使用开发帮助文档 • VS2010内置帮助文档 • 在线帮助文档(MSDN):http://www.msdn.com

  7. 了解VS2010的界面以及操作

More Related