SoloLear_C# Tutorial_Contents
一、Basic Concepts 基本概念
二、Conditionals and Loops 条件语句和循环
三、Methods 方法
四、Classes&Objects 类&对象
五、Arrays&Strings 数组&字符串
六、More On Classses 更多的类
七、Inheritance&Polymorphism 继承和多态
八、Structs,Enums,Exceptions&Files 结构,枚举,异常&文件
九、Generics 泛型(通用类)
十、Cerificate 结业(证书)
Lessons: 69 199 Quizzes 共69节课 199个测验
Module 1: Basic Concepts 模块1:基本概念
1 What is C#? (2Quizzes) C #是什么?
2 Variables (3Quizzes)变量
3 Your First C# Program (3Quizzes) 你的第一个C#程序
4 Printing Text (2Quizzes) 打印文本
5 Getting User Input (2Quizzes) 获取用户输入
6 Comments (2Quizzes) 注释
7 The var Keyword (2Quizzes) 局部变量关键字
8 Constants (1Quizzes) 常量
9 Arithmetic Operators (4Quizzes) 算数运算符
10 Assignment & Increment Operators (5Quizzes) 赋值与增量
11 Module 1 Quiz (5Quizzes) 模块一课堂测验
Module 2: Conditionals and Loops 模块2:条件和循环
12 The if-else Statement (5Quizzes) if-else语句
13 The switch Statement (3Quizzes) switch语句
14 The while Loop (3Quizzes) while循环
15 The for Loop (3Quizzes) for循环
16 The do-while Loop (2Quizzes) do-while循环
17 break and continue (2Quizzes) 跳出和继续
18 Logical Operators (4Quizzes) 逻辑运算符
19 The Conditional Operator (1Quizzes) 条件运算符
20 Basic Calculator (2Quizzes) 基本计算器
21 Module 2 Quiz (5Quizzes) 模块二课堂测验
Module 3: Methods 模块3:方法
22 Introduction to Methods 4 方法概论
23 Method Parameters 3 方法参数
24 Multiple Parameters 2 多个参数
25 Optional & Named Arguments 2 可选的和命名的参数
26 Passing Arguments 3 参数的传递
27 Method Overloading 2 方法的重载
28 Recursion 2 递归
29 Making a Pyramid 1 制作一个金字塔
30 Module 3 Quiz 5 模块三课堂测验
Module 4: Classes & Objects 模块4:类和对象
31 Introduction 3 简介
32 Value & Reference Types 2 值和引用类型
33 Class Example 3 类示例
34 Encapsulation 3 封装
35 Constructors 2 构造函数
36 Properties 5 属性
37 Module 4 Quiz 7 模块四课堂测验
Module 5: Arrays & Strings 模块5:数组和字符串
38 Arrays 4 数组
39 Using Arrays in Loops 3 在循环中使用数组
40 Multidimensional Arrays 2 多维数组
41 Jagged Arrays 1 交错数组
42 Array Properties & Methods 2 数组属性和方法
43 Working with Strings 2 处理字符串
44 Module 5 Quiz 5 模块五课堂测验
Module 6: More On Classes 模块6:更多的类
45 Destructors 2 析构函数
46 Static Members 4 静态成员
47 Static Classes 2 静态类
48 this & readonly 2 this和只读
49 Indexers 2 索引
50 Operator Overloading 2 运算符重载
51 Module 6 Quiz 6 模块六课堂测验
Module 7: Inheritance & Polymorphism 模块7:继承和多态性
52 Inheritance 3 继承
53 Protected Members 2 受保护的成员
54 Derived Class Constructor & Destructor 2 派生类构造函数和析构函数
55 Polymorphism 4 多态性
56 Abstract Classes 2 抽象类
57 Interfaces 2 接口
58 Nested Classes 1 嵌套类
59 Namespaces 1 名称空间
60 Module 7 Quiz 7 模块七课堂测验
Module 8: Structs, Enums, Exceptions & Files 模块8:结构、枚举、异常和文件
61 Structs 2 结构
62 Enums 2 枚举
63 Exception Handling 4 异常处理
64 Working with Files 2 处理文件
65 Module 8 Quiz 6 模块八课堂测验
Module 9: Generics 泛型
66 Generic Methods 2 泛型方法
67 Generic Classes 2 泛型类
68 Collections 2 集合
69 Module 9 Quiz 模块九课堂测验
SoloLear_C# Tutorial_Contents的更多相关文章
随机推荐
- 初识JavaScript和面向对象
1.javascript基本数据类型: number: 数值类型 string: 字符串类型 boolean: 布尔类型 null: 空类型 undefault:未定义类型 object: 基本数据类 ...
- Redis集群与spring的整合
上一篇详细的赘述了Redis的curd操作及集群的搭建.下面我们开始将他整合到我们实际的项目中去.我的项目采用的是标准的ssm框架,ssm框架这里不说,直接开始整合. 首先在maven管理中将我们的j ...
- Oracle delete和truncate实践操作之一
实践说明 本文章主要记录在Oracle中,delete和truncate进行数据删除之后,如何进行数据恢复.由于网上对delete和truncate的区别说明较多,此处不过多介绍两者区别. 注:由于环 ...
- Throughput Controller
吞吐量控制器(Throughput Controller)介绍 作用:控制其子节点的执行次数与负载比例分配 Total Executions: 整个测试计划中的总执行次数 Percent Execut ...
- 【KakaJSON手册】06_Model转JSON
前面的文章介绍了如何利用KakaJSON进行JSON转Model,从这篇文章开始介绍如何将Model转成JSON 生成JSON和JSONString struct Car: Convertible { ...
- SQL 分组后,获取每组中的最大值对应的数据
select gr,num,dt,(select bys from test where gr=b.gr and dt=b.dt) bys from ( select gr,count(0) num, ...
- springboot 项目的https的发布
1.生成密钥证书 生成命令: keytool -genkey -alias tomcat -storetype PKCS12 -keyalg RSA -keysize -keystore keysto ...
- java性能使用
1.慎用异常 j写在for循环外面 2.使用局部变量 局部变量在栈(stack)里面,速度快;全局变量在堆(heap)里面 int a =0; public static int ta =0; 3.位 ...
- windows系统查询指定端口运行的进程并关闭
假如占用的端口是80: 先打开cmd命令窗口 再查找80端口占用的进程:netstat -aon|findstr "80" ,找到对应的程序的PID号: 根据PID号找到 ...
- Leetcode之二分法专题-441. 排列硬币(Arranging Coins)
Leetcode之二分法专题-441. 排列硬币(Arranging Coins) 你总共有 n 枚硬币,你需要将它们摆成一个阶梯形状,第 k 行就必须正好有 k 枚硬币. 给定一个数字 n,找出可形 ...