Download presentation
Presentation is loading. Please wait.
1
INTRODUCTION TO C# & HANDLING DATA
The first lecture INTRODUCTION TO C# & HANDLING DATA
2
1 Overview of the .NET Framework
Introduction to the .NET Framework Common Language Runtime (CLR) Class Library Assembly Versioning An Overview of .NET Framework Base Classes Exceptions Threads Delegates 2019年1月17日星期四 软件设计实例分析 — 汪斌
3
1 Overview of the .NET Framework
Summary 2019年1月17日星期四 软件设计实例分析 — 汪斌
4
2 C# Basics Introduction to C# Variables Initializing Variables
Variable Modifiers Variable Data Types Types of Variables Variable Scope Types of Data Type Casting 2019年1月17日星期四 软件设计实例分析 — 汪斌
5
2 C# Basics (Cont.) Arrays Strings Statements and Expressions
Initializing Strings Working with Strings Statements and Expressions Types of Statements Expressions 2019年1月17日星期四 软件设计实例分析 — 汪斌
6
2 C# Basics Summary 2019年1月17日星期四 软件设计实例分析 — 汪斌
7
3 Components of C# Classes Methods Declaring Classes Inheritance
Constructors Destructors Methods Declaring a Method Calling a Method Passing Parameters to Methods Method Modifiers Overloading a Method 2019年1月17日星期四 软件设计实例分析 — 汪斌
8
3 Components of C# (Cont.)
Namespaces Declaring Namespaces Accessing Namespaces Aliases Structs Enumerations Interfaces 2019年1月17日星期四 软件设计实例分析 — 汪斌
9
3 Components of C# (Cont..)
Writing, Compiling, and Executing a C# Program Writing a C# Program Compiling a C# Program Executing a C# Program 2019年1月17日星期四 软件设计实例分析 — 汪斌
10
3 Components of C# Summary 2019年1月17日星期四 软件设计实例分析 — 汪斌
11
4 More about Components Arrays Collections Single-Dimensional Arrays
Multidimensional Arrays Methods in Arrays Collections Creating Collections Working with Collections 2019年1月17日星期四 软件设计实例分析 — 汪斌
12
4 More about Components Indexers Boxing and Unboxing
Preprocessor Directives #region and #endregion #define and #undef #if, #endif, #else, and #elif #error and #warning 2019年1月17日星期四 软件设计实例分析 — 汪斌
13
4 More about Components Summary 2019年1月17日星期四 软件设计实例分析 — 汪斌
14
5 Attributes and Properties
Declaring Attributes Attribute Class Attribute Parameters Default Attributes Properties Declaring Properties Accessors Types of Properties 2019年1月17日星期四 软件设计实例分析 — 汪斌
15
5 Attributes and Properties
Summary 2019年1月17日星期四 软件设计实例分析 — 汪斌
16
6 Threads Introduction to Threads Creating Threads Aborting Threads
Joining Threads Suspending Threads Making Threads Sleep Thread States Thread Priorities Synchronization 2019年1月17日星期四 软件设计实例分析 — 汪斌
17
6 Threads Summary 2019年1月17日星期四 软件设计实例分析 — 汪斌
18
The End
Similar presentations