博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
20120621第一天_复习与测试
阅读量:4582 次
发布时间:2019-06-09

本文共 1000 字,大约阅读时间需要 3 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _01练习题1{    // ctrl + k + d    /*     * 这是一个注释     */    class Program    {        ///         /// summary表示这个方法的总的描述        ///         /// 表示的是方法参数的描述        static void Main(string[] args)        {            // ctrl + k + s            #region MyRegion            /*            int a = 5;            int b = 10;            char ch;            int[] a;            var num = 10;            num = "123";            num = function () {                            }             * */            #endregion                    }        ///         /// 这是一个自定义的空方法        ///         /// 我是一个参数        public static void Func(int num)        {         }    }    class person    {     }    class Student    { }}
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _01练习题1{    class Teacher    {            }}

 

转载于:https://www.cnblogs.com/maijin/archive/2012/12/20/2826973.html

你可能感兴趣的文章
传感器之超声波测距HC-SR04
查看>>
浅谈Java中的hashCode方法
查看>>
自己编写类似于枚举的类型(多例模式)
查看>>
Asp: Server.mapPath() 注意事项
查看>>
关于减少BUG的思考
查看>>
Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name) 中文显示乱码
查看>>
第二章随笔
查看>>
string.Format出现异常"输入的字符串格式有误"的解决方法
查看>>
SSL 1010——方格取数
查看>>
关于同余与模运算的总结
查看>>
js中top、clientTop、scrollTop、offsetTop的区别 文字详细说明版
查看>>
【转载】法线贴图Nomal mapping 原理
查看>>
prado 初步分析
查看>>
php 做守护进程1
查看>>
简单员工管理实例
查看>>
textwrap 模块
查看>>
SAP 到出XLS
查看>>
HSV
查看>>
JAVA程序中SQL语句无法传递中文参数
查看>>
Android学习_数据库查询使用rawQuery遇到的问题
查看>>