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的更多相关文章
随机推荐
- python 闭包,装饰器,random,os,sys,shutil,shelve,ConfigParser,hashlib模块
闭包 def make_arerage(): l1 = [] def average(price): l1.append(price) total = sum(l1) return total/len ...
- ABAP-复制采购订单行项目到新的行
FUNCTION zmm_fm_copy2new. *"------------------------------------------------------------------- ...
- SpringCloud微服务小白入门之Eureka注册中心和服务中心搭建示例
一.注册中心配置文件 代码复制区域: spring: application: name: spring-cloud-server server: port: 7000 eureka: instanc ...
- Elasticsearch由浅入深(一)
什么是Elasticsearch 什么是搜索 百度:我们比如说想找寻任何的信息的时候,就会上百度去搜索一下,比如说找一部自己喜欢的电影,或者说找一本喜欢的书,或者找一条感兴趣的新闻(提到搜索的第一印象 ...
- 洛谷 P1177 【模板】快速排序
这道题用传统快排(如下所示)的结果就是最后三个点TLE: void swap(int &a, int &b) { int tmp = a; a = b; b = tmp; } void ...
- C#读取Txt大数据并更新到数据库
环境 Sqlserver 2016 .net 4.5.2 目前测试数据1300万 大约3-4分钟.(限制一次读取条数 和 线程数是 要节省服务器资源,如果调太大服务器其它应用可能就跑不了了), Sql ...
- spring data jpa 的使用
使用spring data jpa 开发时,发现国内对spring boot jpa全面介绍的文章比较少案例也比较零碎,因此写文章总结一下. spring data jpa介绍 首先了解JPA是什么? ...
- Vue中 父子传值 数据丢失问题
在Vue中,父子组件传值,子组件通过props接收父组件传递的数据 父组件 questionList : 传递数据参数 questionsLists: 传递数据源 子组件 porps 接收父组件方式 ...
- HandlerMethodArgumentResolver(二):Map参数类型和固定参数类型【享学Spring MVC】
每篇一句 黄金的导电性最好,为什么电脑主板还是要用铜? 飞机最快,为什么还有人做火车? 清华大学最好,为什么还有人去普通学校? 因为资源都是有限的,我们现实生活中必须兼顾成本与产出的平衡 前言 上文 ...
- ZooKeeper异步调用命令
在ZooKeeper中,所有的同步调用命令,都会有一个相应的异步调用方法.异步调用能在一个单独线程中同时提交更多的命令,也能在一定程度上简化代码实现. 1 异步create方法 如创建zNode的命令 ...