码迷,mamicode.com
首页 > 其他好文 > 详细

ylbtech-Unitity-CS:Hello world

时间:2015-12-20 23:55:04      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:

ylbtech-Unitity-CS:Hello world

 

1.A,效果图返回顶部
 
1.B,源代码返回顶部
1.B.1,Hello1.cs
public class Hello1
{
   public static void Main()
   {
      System.Console.WriteLine("Hello, World!");
   }
}
1.B.2,Hello2.cs
using System;

public class Hello2
{
   public static void Main()
   {
      Console.WriteLine("Hello, World!");
   }
}
1.B.3,Hello3.cs
// Hello3.cs
// 参数:A B C D
using System;

public class Hello3
{
   public static void Main(string[] args)
   {
      Console.WriteLine("Hello, World!");
      Console.WriteLine("You entered the following {0} command line arguments:",
         args.Length );
      for (int i=0; i < args.Length; i++)
      {
         Console.WriteLine("{0}", args[i]); 
      }
   }
}
1.B.4,Hello4.cs
using System;

public class Hello4
{
   public static int Main(string[] args)
   {
      Console.WriteLine("Hello, World!");
      return 0;
   }
}
1.B.5,
1.C,下载地址返回顶部

 

技术分享 作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

ylbtech-Unitity-CS:Hello world

标签:

原文地址:http://www.cnblogs.com/ylbtech/p/5062129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!