Best of C# — April 2024
- 1
- 2
- 3
- 4
- 5
- 6
Visual Studio Code·2y
Visual Studio Code Day 2024
VS Code Day 2024 is a 2-day event focused on learning and enhancing development workflow with Visual Studio Code. The event will cover topics like AI-powered programming with GitHub Copilot, building generative AI apps, and enhancing the C# development experience. The hosts of the event are Reynald Adolphe and Gwyneth Peña-Siguenza.
- 7
- 8
- 9
- 10
Code Maze·2y
How to Validate a GUID in C#
Explore several approaches to validate a string representation of a GUID in C#. Learn about the format of a GUID and different techniques like regular expressions, Guid.Parse(), Guid.ParseExact(), Guid.TryParse(), and the Guid constructor for validation. Benchmarking results show that Guid.TryParse() methods offer better performance and efficiency.
- 11
Code Maze·2y
Fastest Way to Find and Extract a Number From a String in C#
Explore the quickest method to find and extract a number from a string in C#. Implement techniques using regular expressions, LINQ, StringBuilder, and Span. Performance comparison shows the advantage of using Span with the lowest memory allocation.