The Notes for Professionals book is compiled from Stack Overflow Documentation, the content is written by the beautiful people at Stack Overflow. Text content is released under Creative Commons BY-SA. See credits at the end of this book whom contributed to the various chapters. Images may be copyright of their respective owners unless otherwise specified
Book created for educational purposes and is not affiliated with group(s), company(s) nor Stack Overflow. All trademarks belong to their respective company owners
https://goalkicker.com/
章节目录
1-1
Content list
1-2
About
1-3
Chapter 1: Getting started with .NET Framework
1-4
Section 1.1: Hello World in C#
1-5
Section 1.2: Hello World in F#
1-6
Section 1.3: Hello World in Visual Basic .NET
1-7
Section 1.4: Hello World in C++/CLI
1-8
Section 1.5: Hello World in IL
1-9
Section 1.6: Hello World in PowerShell
1-10
Section 1.7: Hello World in Nemerle
1-11
Section 1.8: Hello World in Python (IronPython)
1-12
Section 1.9: Hello World in Oxygene
1-13
Section 1.10: Hello World in Boo
1-14
Chapter 2: Strings
1-15
Section 2.1: Count characters
1-16
Section 2.2: Count distinct characters
1-17
Section 2.3: Convert string to/from another encoding
1-18
Section 2.4: Comparing strings
1-19
Section 2.5: Count occurrences of a character
1-20
Section 2.6: Split string into fixed length blocks
1-21
Section 2.7: Object.ToString() virtual method
1-22
Section 2.8: Immutability of strings
1-23
Chapter 3: DateTime parsing
1-24
Section 3.1: ParseExact
1-25
Section 3.2: TryParse
1-26
Section 3.3: TryParseExact
1-27
Chapter 4: Dictionaries
1-28
Section 4.1: Initializing a Dictionary with a Collection Initializer
1-29
Section 4.2: Adding to a Dictionary
1-30
Section 4.3: Getting a value from a dictionary
1-31
Section 4.4: Make a Dictionary<string, T> with Case-Insensivitve keys
1-32
Section 4.5: IEnumerable to Dictionary (≥ .NET 3.5)