enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Operators and expressions - List all operators and expression -...

    learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators

    The simplest C# expressions are literals (for example, integer and real numbers) and names of variables. You can combine them into complex expressions by using operators. Operator precedence and associativity determine the order in which the operations in an expression are performed.

  3. ?? and ??= operators - null-coalescing operators - C# reference

    learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/null...

    The `??` and `??=` operators are the C# null-coalescing operators. They return the value of the left-hand operand if it isn't null. Otherwise, they return the value of the right-hand operand.

  4. The lambda operator - The `=>` operator is used to define a...

    learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/lambda...

    The C# => operator defines lambda expressions and expression bodied members. Lambda expressions define a block of code used as data.

  5. C# docs - get started, tutorials, reference. | Microsoft Learn

    learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp

    Learn C# programming - for beginning developers, developers new to C#, and experienced C# / .NET developers.

  6. Addition operators - + and += - C# reference | Microsoft Learn

    learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/addition...

    The C# addition operators (`+`, and `+=`) work with operands of numeric, string, or delegate types.

  7. ?: operator - the ternary conditional operator - C# reference

    learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/...

    Learn about the C# ternary conditional operator, (`?:`), that returns the result of one of the two expressions based on a Boolean expression's result.

  8. ! (null-forgiving) operator - C# reference | Microsoft Learn

    learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/null...

    Learn about the C# null-forgiving, or null-suppression, operator that is used to declare that an expression of a reference type isn't null.

  9. Overview - A tour of C# | Microsoft Learn

    learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/overview

    C# is a cross-platform general purpose language that makes developers productive while writing highly performant code. With millions of developers, C# is the most popular .NET language. C# has broad support in the ecosystem and all .NET workloads.

  10. Boolean logical operators - AND, OR, NOT, XOR

    learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/boolean...

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

  11. Bitwise and shift operators (C# reference) - learn.microsoft.com

    learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/bitwise...

    Learn about C# operators that perform bitwise logical (AND - `&`, NOT - `~`, OR - `|`, XOR - `^`) or shift operations( `<<`, and `>>`) with operands of integral types.