• ylbtech-Unitity-CS:Hello world


    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,下载地址返回顶部

     

    warn 作者:ylbtech
    出处:http://ylbtech.cnblogs.com/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    leetcodedp72
    leetcodedp122
    leetcodedp714
    leetcodedp198
    leetcode518dp背包
    leetcodedp188
    leetcodedp309
    leetcodedp583
    leetcode123
    leetcodedp213
  • 原文地址:https://www.cnblogs.com/ylbtech/p/5062129.html
Copyright © 2020-2023  润新知