一、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的更多相关文章

随机推荐

  1. 基于jmeter+perfmon的稳定性测试记录

    1. 引子 最近承接了项目中一些性能测试的任务,因此决定记录一下,将测试的过程和一些心得收录下来. 说起来性能测试算是软件测试行业内,有些特殊的部分.这部分的测试活动,与传统的测试任务差别是比较大的, ...

  2. Java学习|HTTP请求头

    https://www.cnblogs.com/honghong87/articles/6941436.html 常见http请求报文头属性      Accept:告诉服务端,客户端接受什么类型的响 ...

  3. 分布式CAP理论

    分布式CAP理论 来自wiki: 在理论计算机科学中,CAP定理(CAP theorem),又被称作布鲁尔定理(Brewer's theorem),它指出对于一个分布式计算系统来说,不可能同时满足以下 ...

  4. time_wait状态如何处理和建议

    TL;DR: do not enable net.ipv4.tcp_tw_recycle. UPDATED (2017.09): net.ipv4.tcp_tw_recycle has been re ...

  5. thinkPHP中的简单文章推荐(按浏览量)功能实现

    在公司中接触到了thinkPHP框架,其中要在项目中实现文章推荐功能.记录笔记如下: 一.在Controller中获取从文章列表页进入详情页传入的文章ID值. 二.在Controller中绑定数据库查 ...

  6. MSIL实用指南-位运算

    C#支持的位运算是与.或.异或.取反.左移.右移,它们对应的指令是And.Or.Xor.Not.Shl.Shr. 取反运算只需要一个操作数,生成步骤是1.生成加载变量2.生成取反指令实例代码: ilG ...

  7. vue实现手机号码的校验(防抖函数的应用场景)

    上一篇博文我们讲到了节流函数的应用场景,我们知道了节流函数可以用在模糊查询.scroller.onresize等场景:今天这篇我们来讲防抖函数的应用场景:: 通过上一篇博文的学习,我们知道了防抖函数的 ...

  8. 文件系统【图片处理】(基于thumbnailator)典藏版-壹

    很多系统开发中都会碰到文件相关的处理,最近顺手开发一个小型文件系统的过程中碰到图片缩略图的需求,需要在显示的时候提供缩略图,下载的时候提供原图,大家直接想到的可能是java自带的图片处理类,但是处理过 ...

  9. zstu19一月月赛 duxing201606的原味鸡树

    duxing201606的原味鸡树 题意: 给定一颗有n(n<=1e9)个节点的完全二叉树,1e5次询问,问某个节点有几个子节点. 思路: 自己在月赛上没有思路,问了zfq才知道. 设两个指标, ...

  10. hdu 5977 Garden of Eden(点分治+状压)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5977 题解:这题一看就知道是状压dp然后看了一下很像是点分治(有点明显)然后就是简单的点分治+状压dp ...