我的第三个HelloWorld

类别:.NET开发 点击:0 评论:0 推荐:

using System;

namespace ConsoleApplication5
{
 class HelloWorld
 {
  private string OutPut;
  public HelloWorld(string OutWord)
  {
   OutPut=OutWord;
   Console.WriteLine(OutPut);
  }
 }

 /// <summary>
 /// Class1 的摘要说明。
 /// </summary>
 class Class1
 {
  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [STAThread]
  static void Main(string[] args)
  {
   HelloWorld h=new HelloWorld("HelloWorld!");
   
   // TODO: 在此处添加代码以启动应用程序
   //
  }
 }
}

本文地址:http://com.8s8s.com/it/it43913.htm