About 41,600 results
Open links in new tab
  1. 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.

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

  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, mobile …

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

  5. The best new features of C# 14 - InfoWorld

    2 days ago · Available as a part of .NET 10, which was released last November, C# 14 brings a plethora of new features and enhancements that make it easier to write efficient, high performant code. Just …

  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. What's New in C# 13: Enhanced Params, Performance Boosts, and New ...

    May 28, 2024 · As the most notable improvements to params parameters, the new extension types are announced, and the release includes several performance and memory enhancements for .NET …

  8. C# Explained in 100 Seconds - MSN

    Aug 11, 2025 · C# or C-Sharp is the programming language behind .NET (dotnet) and the Unity framework. It was created at Microsoft as a C-like object-oriented language and is used to build apps …

  9. Making Your Life Easier with C# Scripting - Visual Studio Magazine

    Jun 14, 2021 · If all you want to do is try something out with some throwaway code, C# Scripting in Visual Studio might be a better choice. C# Scripting (hereafter, CS-Script) lets you write and execute …

  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.