zoukankan      html  css  js  c++  java
  • C#语言基础

    using System;

    using System.Collections.Generic;

    using System.Text;//调用命名空间

    namespace ConsoleApplication1 //命名空间

    {     class Program//类     {       

      static void Main(string[] args//主函数:程序的入口,一个程序有且只有一个入口      

       //在Main函数中开始书写工具         

    Console. Write(“hello world”);//输出         

    Console. ReadLine0;//用户录入,可以用来防止控制台运行完之后后关闭

    项目后缀

    .config---配置文件(存放配置参数文件)

    .csproj---项目文件(管理文件项)

    .sln---解决方案文件(管理项目)

    .cs---源文件(程序代码)

    注:后缀不同代表文件类型也不同,这些文件后缀类型会在“解决方案资源管理器”中看到。

  • 相关阅读:
    基础表达式和运算符
    原型链(_proto_) 与原型(prototype) 有啥关系?
    插件模板
    加减plugin
    原生选项卡、手风琴
    前端基础问题(有答案)
    结构图
    Java环境配置小记
    函数
    砝码称重
  • 原文地址:https://www.cnblogs.com/jsn108926/p/5302385.html
Copyright © 2011-2022 走看看