最近加班天天到24点

最近加班天天到24点看书的时间都没有啊!!!!
终天有一天可以早回家,抽时间把前段时间看过的C#的一些内容总结复习下。
学习的路上还得加油努力啊!!!

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices.ComTypes;
using System.Text;
using System.Threading.Tasks;
using N1;


namespace xuexi
{
     class Program
    {
        static void Main(string[] args)
        {
            Abc a = new Abc();
            a.caa();

        }
    }
}

//命名空间
namespace N1 {
    class Abc {
        //public static void
        public void caa() {
            Console.WriteLine("11111111");
            Console.ReadLine();
        }
    }
}

namespace N2 {

    //成员变量
    int x = 5;
    static int y = 1;

    //枚举类型
    enum mj
    {
        lis1 = 1,
        lis2 = 2,
        lis3 = 3,
        lis4 = 4,
        lis5 = 5
    }
    public class Abc1 {

        //注释
        //

        //变量的基本操作
        int sls, num;
        string a, b, c;

        //赋值
        int sls = 111;
        int num = 1;

        //i 局部变量
        for(int i = 0; i<=100; i++){
            Console.WriteLine('1111111');
        }

    //值类型
    //整数int 
    //浮点float double
    //布尔bool  true

    //引用类型
    //类 类,接口,数组,季托

    //枚举类型  放到成员变量的位置
    enum mj {
        lis1 = 1,
        lis2 = 2,
        lis3 = 3,
        lis4 = 4,
        lis5 = 5
    }

    //使用枚举类型
    switch(k){
        case (int) mj.lis1:Console.WriteLine("111111");break;
        case (int) mj.list2: Console.WriteLine("22222");break;
    }

    //类型转换 
int a = 1;
long j = a;

//显示类型转换
string a = "asdfadsf";
int b =(int)a;

//常量
const int a = 1111;

//表达式

//运算符
//&& & 与 和
//|| 或
//! 非

//数值运算符

//赋值运算

//关系运算

//逻辑运算

//位运算

//其他特殊运算
// is 运算符
int a;
int a = 1;
bool tr = a is int;

// 条件运算符 三元运算PHP
bool istr;
string yesno = istr ? "是" : "不是";

//new 运算 创建数组5位
string[] ar = new string[5];

//typeof运算符 获取原型对象的类型
typeof(int);

    }



}

namespace N3 {
    class cbb {
        //字符与字符串

        //Char字符类的使用 存储单个字符
        //Is...... 一般为判断
        //To...... 一般为转换
        // Char.IsDigit(a);

        //转义字符
        Char a = "\"";

        //字符串
        String a = "adsfdasf";
        String b = "dsafdsafa";
        a +" "+ b;

        //比较字符串
        String str1 = "asdfasdf";
        Compare();

        CompareTo();
        Equals();

        //格式化字符串
        String.Format();

        //截取字符串
        str1.Substring();

        //分割字符串
        str1.Split();

        //插入和填充字符串
        str1.Insert();
        str1.PadLeft();
        str1.PadRight();

        //删除字符串
        str1.Remove();

        //复制字符串
        String.Copy();
        str1.CopyTo();

        //替换字符串
        a.Replace();

    }
}

namespace N4
{
    class Program
    {
        static void Main(string[] args)
        {

            //可变字符串类 StringBuilder

            int Num = 1000;							//声明一个int类型变量Num并初始化为1000
            //实例化一个StringBuilder类,并初始化为“用一生下载你”
            StringBuilder LS = new StringBuilder("用一生下载你", 100);
            LS.Append("VS芸烨湘枫");					//使用Append方法将字符串追加到LS的末尾
            Console.WriteLine(LS);						//输出LS
            //使用AppendFormat方法将字符串按照指定的格式追加到LS的末尾
            LS.AppendFormat("{0:C}", Num);
            Console.WriteLine(LS);						//输出LS
            LS.Insert(0, "名称:");						//使用Insert方法将“名称:”追加到LS的开头
            Console.WriteLine(LS);						//输出LS
            //使用Remove方法从LS中删除索引15以后的字符串
            LS.Remove(15, LS.Length - 15);
            Console.WriteLine(LS);						//输出LS
            //使用Replace方法将“名称:”替换成“一生所爱”
            LS.Replace("名称", "一生所爱");
            Console.WriteLine(LS);						//输出LS
            Console.ReadLine();

        }
    }
}

分类:

发表评论

邮箱地址不会被公开。