About 48,000 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…

  2. C Sharp (programming language) - Wikipedia

    C# (/ ˌsiː ˈʃɑːrp / see SHARP) [b] is a general-purpose high-level programming language supporting multiple paradigms. C# encompasses static typing, [17]: 4 strong typing, lexically scoped, imperative, …

  3. 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,

  4. Mastering Operators in C#: A Comprehensive Guide - Medium

    Jul 31, 2024 · Welcome! In this article, we will explore the integral concept of operators in C# programming. Operators are essential components that enable the execution of various operations …

  5. C# Basics for Absolute Beginners in C# and .NET - GitHub

    This course will teach you the fundamentals of the C# programming language in .NET from the ground up. You will apply the learnings through lots of quizzes, assignments, coding challenges, etc. You will …

  6. C Sharp syntax - Wikipedia

    C Sharp syntax A snippet of C# code This article describes the syntax of the C# programming language. The features described are compatible with .NET Framework and Mono.

  7. 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. …

  8. docs/docs/csharp/language-reference/operators/boolean-logical ... - GitHub

    Beginning with C# 14, a user-defined type can explicitly overload the compound assignment operators to provide a more efficient implementation. Typically, a type overloads these operators because the …

  9. What's New for C# 14 and F# 10 in .NET 10 - Visual Studio Magazine

    Nov 17, 2025 · Microsoft's C# 14 and F# 10 updates ship with .NET 10, adding new language features, tooling improvements and refinement-focused enhancements across both ecosystems. Extension …

  10. How to handle null values in C# - InfoWorld

    Jul 20, 2023 · Null pointer exceptions are no fun. You can avoid them and keep your code clean and maintainable by using these techniques to elegantly handle null values in C#.