Best of C ProgrammingMarch 2023

  1. 1
    Article
    Avatar of devblogsDevBlogs·3y

    How Async/Await Really Works in C#

    Learn how async/await works in C# and how it improves the scalability of .NET code. Understand the difference between synchronous and asynchronous methods and how they are implemented using the async/await pattern.

  2. 2
    Article
    Avatar of itsfossIt's Foss·3y

    Rust Basics Series #1: Hello World Program in Rust

    Rust is one of the fastest adopted systems programming languages by developers and tech companies. It has been getting this love for seven years now! It is so popular that there are now two big efforts being carried out in the Linux ecosystem.

  3. 3
    Article
    Avatar of medium_jsMedium·3y

    All JavaScript and TypeScript features of the last 3 years

    The article goes through almost all of the changes of the last 3 years (and some from earlier) in JavaScript and TypeScript. There are a lot of TypeScript features I left out because they can be summarized as “This didn’t work like you would expect it to but now does’s.

  4. 4
    Article
    Avatar of communityCommunity Picks·3y

    Null Handling Techniques in C#

    Learn about 7 null handling techniques in C#, including the null coalescing operator, conditional operator, and null-conditional operator.