zoukankan      html  css  js  c++  java
  • C#第二章学习的代码

    2._1_Csharp程序结构
    using System;
    
    //引用命名空间
    
    namespace _2._1_Csharp程序结构
    {
        class Program//Program类
        {
            static void Main(string[] args)//static静态 void 无返回值 Main函数 也是我们程序执行的起点
            {
                Console.WriteLine("Csharp结构");
                Console.ReadKey();
            }
        }
    }
    //命名空间或者项目名称
    2._2命名空间标识符关键字
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using @class = System.Console;
    
    namespace _2._2命名空间标识符关键字
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.WriteLine("这是一条 输出语句");
    
                @class.WriteLine("这是一条别名输出语句");
                Console.ReadKey();
            }
        }
    }
    2._3编程规范
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace _2._3编程规范
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.WriteLine("这是第一行");
                Console.WriteLine("这是第二行");
            }
        }
    }
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    
    namespace _2._4_本章总结及任务实施
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.WriteLine("这是第4节本章总结及任务实施");
           
    
    
                Console.ReadKey();
            }
        }
    }
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace 一个解决方案下第二个项目
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.WriteLine("第二项目");
                Console.ReadKey();
            }
        }
    }
  • 相关阅读:
    Intellij IDEA 常用快捷键
    @Transient注解----Hiberbate
    tomcat:域名指向项目名
    java实现全排列
    Bean不同配置方式的比较
    Spring MVC:在jsp中引入css
    Spring中Bean的作用域
    第9章 初识HAL固件库
    第8章 自己写库—构建库函数雏形
    第7章 使用寄存器点亮LED灯
  • 原文地址:https://www.cnblogs.com/zqyo2000z/p/5338727.html
Copyright © 2011-2022 走看看