Best of C# — February 2024
- 1
- 2
- 3
- 4
Waseem .NET Newsletter·2y
EP 48 : Refactoring in C#
Refactoring in C# is the process of improving the internal structure of code without changing its external behavior. It aims to enhance efficiency, code readability, and maintainability. The post discusses situations when code should be refactored and provides common refactoring techniques.
- 5
freeCodeCamp·2y
Learn the C# Programming Language – Full Book for Beginners
Learn the C# Programming Language – Full Book for Beginners. The post provides an overview of C#, its history, and its evolution into a versatile programming language. It also introduces the .NET environment, free tools for C# development, and the types of applications that can be built using C#.
- 6
- 7
The New Stack·2y
Microsoft: We Are Not ‘Abandoning’ C# for Rust
Despite recent speculation, Microsoft affirms its commitment to C# programming language while expressing its interest in Rust for certain use cases. The company is looking for Rust developers to help transition existing C# cloud services to Rust code in an effort to modernize and optimize its global platform services.
- 8
- 9
- 10
Hacker News·2y
microsoft/FASTER: Fast persistent recoverable log and key-value store + cache, in C# and C++.
FASTER is a fast persistent recoverable log and key-value store + cache library in C# and C++. It offers high performance, supports very frequent commit operations at low latency, and can handle data larger than memory. It also provides consistent recovery using a fast non-blocking checkpointing technique.
- 11
- 12
InfoWorld·2y
When to use classes, structs, or records in C#
This post explores the concepts of classes, structs, and records in C# programming. It discusses their features, capabilities, and limitations, and provides guidance on when to use each type. The post also includes code examples and explanations for creating and working with classes, structs, and records.
- 13