About 40,100 results
Open links in new tab
  1. C# Null Coalescing (??) operator - Medium

    Jul 19, 2024 · The null coalescing operator (??) in C# is a convenient way to handle null values in expressions. It checks whether its left-hand operand is null and, if so, evaluates and returns the right …

  2. C Sharp (programming language) - Wikipedia

    Microsoft introduced C# along with .NET Framework and Microsoft Visual Studio, both of which are, technically speaking, closed-source. At the time, Microsoft had no open-source products.

  3. docs/docs/csharp/language-reference/operators/boolean-logical

    C# logical operators perform logical negation (`!`), conjunction (AND - `&`, `&&`), and inclusive and exclusive disjunction (OR - `|`, `||`, `^`) operations with Boolean operands. The logical Boolean …

  4. Learn C#: A Cheat Sheet for Newcomers - HackerNoon

    Mar 9, 2023 · C# (pronounced “C sharp”) is a modern, object-oriented programming language developed by Microsoft. It is widely used for creating desktop applications, games, mobile …

  5. How to use lambda expressions in C# - InfoWorld

    Jan 27, 2020 · We’ll use this project to work with C# lambda expressions in the subsequent sections of this article.

  6. C#, The Language For All Platforms – Now Including Windows ... - Hackaday

    Feb 10, 2020 · Just a glimmer of .NET in DOS and Windows 3.11 comes courtesy of [Michal Strehovský], who has successfully compiled .net C# code for both Windows 3.11 and DOS. An in …

  7. C# 9: New `and`, `or`, and `not` Keywords for Pattern Matching

    Jul 15, 2020 · Though it may sound like our occasional April Fools Day joke, C# 9 is looking to add `and`, `or`, and `not` to its list of keywords. Specifically, for use in pattern matching.

  8. How I Learned C#: A U.S. News Guide

    Dec 4, 2020 · Whether you’re looking to get into web development, mobile app development, desktop applications or game development, or you just want to start learning programming, C# is a great …

  9. Understanding Async and Await in C# - LinkedIn

    1 day ago · When you first learn async and await, it feels like a small syntax feature. But in reality, it changes how your program uses threads, time, and resources.

  10. Different Ways to Write Conditional Statements in C# - MUO

    Feb 28, 2023 · In C#, there are different ways you can write conditional statements. This includes standard if-else statements, switch statements, ternary operators, and nullable ternary operators.