1. Hello World

     //打印语句
    Console.WriteLine("Hello World");
    //暂停
    Console.ReadKey();
  2. 数据类型
    1.值类型 byte,char,short,int,long,bool,decimal,float,double,sbyte,uint,ulong,ushort
    2.引用类型: 储存的不是值实际数据而是一个内存地址 object、dynamic 和 string。
    3.对象类型:Object 类型检查是在编译时发生的
    4.动态类型: 可以存储任何类型的值在动态数据类型变量中,类型检查在运行时
    5.字符串(String)类型
    6.指针类型(Pointer types)

  3. 类型转换

    1. 隐式转换
    2. 显式转换
    3. Toxxx方法
  4. 变量

  5. 常量

    1. 整数常量

      • 整数常量可以是十进制、八进制或十六进制的常量。前缀指定基数:0x 或 0X 表示十六进制,0 表示八进制,不带前缀则默认表示十进制。
      • 整数常量也可以带一个后缀,后缀是 U 和 L 的组合,U 表示无符号整数(unsigned),L 表示长整数(long)。后缀可以是大写,也可以是小写,U 和 L 的顺序任意。
    2. 浮点常量(小数必须包含整数)
    3. 字符常量
    4. 字符串常量
    5. 定义常量
  6. 运算符

    1. 算数运算符
    2. 关系运算符
    3. 逻辑运算符
    4. 位运算符
    5. 赋值运算符
    6. 其他运算符
      1. sizeof():数据类型的大小
      2. typeof():返回 class的类型。
      3. &: 返回变量的地址
      4. *:变量的指针
      5. ?: :三元表达式
      6. is:判断对象是否为某一类型
      7. as: 强制转换,即使失败也不会抛出异常
  7. 判断:

    1. if
    2. switch
  8. 循环:

    1. while循环
    2. for/foreach
    3. do…while
  9. 封装:

    1. public:允许一个类将其成员变量和成员函数暴露给其他的函数和对象。任何公有成员可以被外部的类访问
    2. private:允许一个类将其成员变量和成员函数对其他的函数和对象进行隐藏。只有同一个类中的函数可以访问它的私有成员。即使是类的实例也不能访问它的私有成员。
    3. protected:该类内部和继承类中可以访问。
    4. internal:同一个程序集的对象可以访问。
    5. protected internal:3 和 4 的并集,符合任意一条都可以访问。
  10. 可空类型

    • //默认值为0
      int a;
      //默认值为null
      int? b=123;
      //如果b为null就赋值2否则c=b
      int c= b?? 2;
      Console.WriteLine("c的值为{0}", c);
      Console.ReadLine();
  11. 数组

    //初始化数组逐个赋值
    int[] arr = new int[10];
    arr[0] = 12312;
    //初始化数组并赋值
    int[] arr1 = { 321, 312, 12312, 12312312, 12312312 };
    //使用for循环赋值
    for (int i = 0; i < 10; i++)
    {
    arr[i] = i + 100;
    }
    //使用forEach取值
    foreach (int i in arr)
    {
    Console.WriteLine("元素的值为{0}", i);
    }
  12. 结构体

    struct Books{
    public string id;
    public string name;
    public string price;
    }
    static void Main()
    {
    Books book1;
    book1.id = "123";
    book1.name = "aaa";
    book1.price = "23131";
    Console.WriteLine("书信息:书id{0},书名{1},书价格{2}",book1.id,book1.name,book1.price);
    Console.ReadLine();
    }
    • 类与结构的不同点
      1. 类是引用类型,结构是值类型
      2. 结构不支持继承
      3. 结构不能声明默认的构造函数
      4. 结构体中无法实例属性或赋初始值
    • 类与结构的选择
      1. 当我们描述一个轻量级对象的时候,结构可提高效率,成本更低。数据保存在栈中,访问速度快
      2. 当堆栈的空间很有限,且有大量的逻辑对象或者表现抽象和多等级的对象层次时,创建类要比创建结构好一些;
  13. 枚举

    //枚举列表中的每个符号代表一个整数值,一个比它前面的符号大的整数值,可自定义每个符号
    enum Days { Sun, Mon, Tue, Wed, Thu, Fri, Sat };
    static void Enum()
    {
    int a = (int)Days.Wed;
    Console.WriteLine(a);
    Console.ReadLine();
    }
  14. 析构函数

    class Test
    {
    string id;
    public Test()
    {
    Console.WriteLine("构造函数");
    }
    ~Test()
    {
    Console.WriteLine("析构函数");
    }
    static void Main()
    {
    Test test = new Test { id = "123" };
    Console.WriteLine("id为{0}", test.id);
    Console.ReadLine();
    } }
  15. 多态性

    1. 通过在类定义前面放置关键字 sealed,可以将类声明为密封类。当一个类被声明为 sealed 时,它不能被继承。抽象类不能被声明为 sealed。
    2. 当有一个定义在类中的函数需要在继承类中实现时,可以使用虚方法。虚方法是使用关键字 virtual 声明的。虚方法可以在不同的继承类中有不同的实现。
  16. 运算符的重载

    class Test2
    {
    public int length;
    //运算符重载
    public static Test2 operator +(Test2 a, Test2 b)
    {
    Test2 test = new Test2 { length = a.length - b.length };
    return test;
    }
    static void Main(string[] args)
    {
    Test2 test = new Test2 { length = 12 };
    Test2 test1 = new Test2 { length = 213 };
    Test2 t = test + test1;
    Console.WriteLine("t的值{0}", t.length);
    Console.ReadLine();
    }
    }
  17. 预处理器指令

    1. define 预处理器

    2. 条件指令
  18. 异常处理

    1. try catch finally
    2. 常见异常:
      1. IO异常
      2. 空对象
      3. 类型转换
      4. 除以0
  19. 文件的输入与输出

     //字节流读取文件
    static void Main(string[] args)
    {
    StreamReader streamReader =new StreamReader(@"D:\Document\test.txt");
    string line;
    //读取文件内容
    while ((line = streamReader.ReadLine()) != null)
    {
    //打印出来
    Console.WriteLine(line);
    }
    Console.ReadLine();
    }
  20. windows文件系统操作

     static void Main(string[] args) {
    GetFile(@"D:\ProgramFiles");
    Console.ReadLine();
    }
    //获得某文件夹下的文件名与大小
    static void GetFile(String path) {
    DirectoryInfo directoryInfo = new DirectoryInfo(path);
    DirectoryInfo[] directoryInfo1 = directoryInfo.GetDirectories();
    FileInfo[] files = directoryInfo.GetFiles();
    if(directoryInfo1!=null) {
    foreach(DirectoryInfo directoryInfo2 in directoryInfo1) {
    if(directoryInfo2.Name!="app") {
    GetFile(path+@"\"+directoryInfo2.Name);
    }
    }
    }
    if(files!=null) {
    foreach(FileInfo file in files) {
    Console.WriteLine("文件名:{0},文件大小{1}",file.Name,file.Length);
    }
    }
    }
  21. 特性

    1. 预定义特性
      1.AttributeUsage
      2.Conditional
      3.Obsolete: [Obsolete("过时了")]编译器会给出警告信息[Obsolete("过时了",true)]编译器会给出错误信息

    2. 自定义特性

  22. 委托

    delegate void ConsoleWrite1();
    namespace ConsoleApp1 {
    class Program { static void Main(string[] args) {
    ConsoleWrite1 consoleWrite1 = new ConsoleWrite1(ConsoleWrite);
    consoleWrite1();
    Console.ReadLine();
    }
    static void ConsoleWrite() {
    Console.WriteLine("测试");
    }
    • 委托的用途

               static FileStream fs;
      static StreamWriter sw;
      // 委托声明
      public delegate void printString(string s); // 该方法打印到控制台
      public static void WriteToScreen(string str) {
      Console.WriteLine("The String is: {0}",str);
      }
      // 该方法打印到文件
      public static void WriteToFile(string s) {
      fs=new FileStream(@"D:\Document\test.txt",
      FileMode.Append,FileAccess.Write);
      sw=new StreamWriter(fs);
      sw.WriteLine(s);
      sw.Flush();
      sw.Close();
      fs.Close();
      }
      // 该方法把委托作为参数,并使用它调用方法
      public static void sendString(printString ps) {
      ps("Hello World");
      }
      static void Main(string[] args) {
      printString ps1 = new printString(WriteToScreen);
      printString ps2 = new printString(WriteToFile);
      sendString(ps1);
      sendString(ps2);
      Console.ReadKey();
      }
    1. 指针变量

       static unsafe void Test12() {
      int i = 0;
      int* p = &i;
      Console.WriteLine("i的值为{0},内存地址为{1}",i,(int)p);
      Console.WriteLine();
      }
    2. 传递指针作为方法的参数
           static unsafe void Main() {
      int var1 = 10;
      int var2 = 20;
      Console.WriteLine("var1:{0},var2:{1}",var1,var2);
      int* a = &var1;
      int* b = &var2;
      Swap(a,b);
      Console.WriteLine("var1:{0},var2:{1}",var1,var2);
      Console.ReadLine();
      }
      static unsafe void Swap(int* a,int* b) {
      int temp =*a;
      *a=*b;
      *b=temp;
      }
    3. 使用指针访问数组元素
                static unsafe void array() {
      int[] list = { 10,100,200 };
      fixed (int* ptr = list)
      /* 显示指针中数组地址 */
      for(int i = 0;i<3;i++) {
      Console.WriteLine("Address of list[{0}]={1}",i,(int)(ptr+i));
      Console.WriteLine("Value of list[{0}]={1}",i,*(ptr+i));
      }
      Console.ReadKey();
  23. out参数:一个方法返回多个不同类型的参数

      static void Main() {
    string s="asd";
    int i=Test7(out s);
    Console.WriteLine(s);
    Console.WriteLine(i);
    Console.ReadLine(); } public static int Test7(out string a) {
    a="asddddddddddd";
    return 1;
    }
  24. params参数
     static void Main() {
    Params(213,31231,12312,13231,123,1312,312,312,321,3,12,312,12);
    }
    static void Params(params int[] array) {
    int max = array[0];
    for(int i = 0;i<array.Length;i++) {
    if(array[i]>max) {
    max=array[i];
    }
    }
    Console.WriteLine("最大值为{0}",max);
    Console.ReadLine();
    }
  25. ref参数
    static void Main() {
    int i = 30;
    Ref(ref i);
    Console.WriteLine(i);
    Console.ReadKey();
    }
    static void Ref(ref int a) {
    a+=500;
    }
  26. 连接数据库
        static void MysqlConnection() {
    //配置连接信息
    String connstr = "server=localhost;port=3306;user=root;password=123456;database=ztree";
    MySqlConnection mySqlConnection = new MySqlConnection(connstr);
    //打开连接
    mySqlConnection.Open();
    //sql语句
    string sql = "select * from city";
    MySqlCommand mySqlCommand = new MySqlCommand(sql,mySqlConnection);
    //执行sql语句
    MySqlDataReader mySqlDataReader = mySqlCommand.ExecuteReader();
    while(mySqlDataReader.Read()) {
    if(mySqlDataReader.HasRows) {
    Console.WriteLine("id:{0};name:{1};pid:{2}",mySqlDataReader.GetString(0),mySqlDataReader.GetString(1),mySqlDataReader.GetString(2));
    }
    }
    mySqlConnection.Close();
    }

c#入门学习笔记的更多相关文章

  1. Hadoop入门学习笔记---part4

    紧接着<Hadoop入门学习笔记---part3>中的继续了解如何用java在程序中操作HDFS. 众所周知,对文件的操作无非是创建,查看,下载,删除.下面我们就开始应用java程序进行操 ...

  2. Hadoop入门学习笔记---part3

    2015年元旦,好好学习,天天向上.良好的开端是成功的一半,任何学习都不能中断,只有坚持才会出结果.继续学习Hadoop.冰冻三尺,非一日之寒! 经过Hadoop的伪分布集群环境的搭建,基本对Hado ...

  3. PyQt4入门学习笔记(三)

    # PyQt4入门学习笔记(三) PyQt4内的布局 布局方式是我们控制我们的GUI页面内各个控件的排放位置的.我们可以通过两种基本方式来控制: 1.绝对位置 2.layout类 绝对位置 这种方式要 ...

  4. PyQt4入门学习笔记(一)

    PyQt4入门学习笔记(一) 一直没有找到什么好的pyqt4的教程,偶然在google上搜到一篇不错的入门文档,翻译过来,留以后再复习. 原始链接如下: http://zetcode.com/gui/ ...

  5. Hadoop入门学习笔记---part2

    在<Hadoop入门学习笔记---part1>中感觉自己虽然总结的比较详细,但是始终感觉有点凌乱.不够系统化,不够简洁.经过自己的推敲和总结,现在在此处概括性的总结一下,认为在准备搭建ha ...

  6. Hadoop入门学习笔记---part1

    随着毕业设计的进行,大学四年正式进入尾声.任你玩四年的大学的最后一次作业最后在激烈的选题中尘埃落定.无论选择了怎样的选题,无论最后的结果是怎样的,对于大学里面的这最后一份作业,也希望自己能够尽心尽力, ...

  7. Scala入门学习笔记三--数组使用

    前言 本篇主要讲Scala的Array.BufferArray.List,更多教程请参考:Scala教程 本篇知识点概括 若长度固定则使用Array,若长度可能有 变化则使用ArrayBuffer 提 ...

  8. OpenCV入门学习笔记

    OpenCV入门学习笔记 参照OpenCV中文论坛相关文档(http://www.opencv.org.cn/) 一.简介 OpenCV(Open Source Computer Vision),开源 ...

  9. stylus入门学习笔记

    title: stylus入门学习笔记 date: 2018-09-06 17:35:28 tags: [stylus] description: 学习到 vue, 有人推荐使用 stylus 这个 ...

  10. dubbo入门学习笔记之入门demo(基于普通maven项目)

    注:本笔记接dubbo入门学习笔记之环境准备继续记录; (四)开发服务提供者和消费者并让他们在启动时分别向注册中心注册和订阅服务 需求:订单服务中初始化订单功能需要调用用户服务的获取用户信息的接口(订 ...

随机推荐

  1. golang 不足

    滴滴出行技术总监:关于技术选型的那些事儿 原创: 杜欢 InfoQ 2017-02-26   https://mp.weixin.qq.com/s/6EtLzMhdtQijRA7Xrn_pTg     ...

  2. ubuntu系统调整时区和时间

    date: 2019-05-30  10:14:23 author:headsen  chen 个人原创博客,转录需要注明作者和出处. 1,安装ntpdate,同步标准时间 root@hk-confl ...

  3. angular中父组件给子组件传值-@input

    1. 父组件调用子组件的时候传入数据 <app-header [msg]="msg"></app-header> 2. 子组件引入 Input 模块 imp ...

  4. linux性能监控 -CPU、Memory、IO、Network等指标的讲解

    [操作系统-linux]linux性能监控 -CPU.Memory.IO.Network等指标的讲解(转) 一.CPU 1.良好状态指标 CPU利用率:User Time <= 70%,Syst ...

  5. lua字符串处理(string库用法)

    原文地址http://www.freecls.com/a/2712/f lua的string库是用来处理字符串的,基础函数如下 string.byte(s [, i [, j]]) string.by ...

  6. 03--STL算法(常用算法)

    一:常用的查找算法 (一)adjacent_find():邻接查找 在iterator对标识元素范围内,查找一对相邻重复元素,找到则返回指向这对元素的第一个元素的迭代器.否则返回past-the-en ...

  7. svn add 命令 递归目录下所有文件

    svn add 命令 递归目录下所有文件 摘自:https://blog.csdn.net/yefl007/article/details/46506281 即使被忽略了也可以使用此命令. svn a ...

  8. ABAP编辑器输入中文变成问号

    在ABAP编辑器里输入汉字,点击空格后显示问号? 中英文环境下编辑都出现乱码 实用程序->设置 ->基于文本的编辑器 如果用老式编辑器,可以输入中文  试试打个补丁 GUI740 补丁17 ...

  9. videojs改变音量大小

    <audio id=example-video preload="auto" class="video-js vjs-default-skin" type ...

  10. 实现下拉弹出视图和Block的简单实现

    实现效果如下: 实现代码如下: @interface ViewController ()<UIViewControllerTransitioningDelegate> { UILabel ...