您的位置:首页 > 编程语言 > C#

C# helloworld 0001

2016-04-21 02:22 435 查看
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
/* my first program in C# */
Console.Write("Hello World");
Console.ReadKey();
}
}
}


output:Hello World

Note:

Following are some of the components of the .Net framework:

Common Language Runtime

The .Net Framework Class Library

Common Language Specification

Common Type System

Metadata and Assemblies

Windows Forms

ASP.Net and ASP.Net AJAX

ADO.Net

Windows Workflow Foundation (WF)

Windows Presentation Foundation

Windows Communication Foundation (WCF)

LINQ
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: