English
Topic 4. Arrays and strings
Goal: become familiar with one-dimensional, rectangular, and jagged arrays in C# and the string type; learn to create, traverse, copy, and sort arrays and process strings using the Array, string, and StringBuilder classes; master common array-processing and text-parsing algorithms.
Lecture contents
- One-dimensional arrays — One-dimensional arrays · Accessing elements · Traversing and copying arrays
- The Array class and multidimensional arrays — The Array class · Rectangular and jagged arrays
- Strings and formatting — Strings · String methods · String literals and formatting
- StringBuilder, Unicode, and regular expressions — The StringBuilder class · Culture, Unicode, and regular expressions
- Examples and common mistakes — Example programs · Common mistakes