Tag: using
Using Modulus or % to get the Remainder in C#
Below is a sample soucrecode demonstrating how to get remainder in c# using Modulus or Remainder operator (%). Using Modulus or % to get the Remainder in C#
Using or Operator in the Where Clause of LINQ in C#
Below is a sample code snippet demonstrating on how to use “Or” Operator in the Where Clause of Linq in C#? Using or Operator in the Where Clause of LINQ in C#
Using Null Coalescing Operator in C#
Sometimes , you may want to simply the Null checks in your .NET Program without much usage of the if statements . The Null Coalescing Operator can be used in this scenario. Using Null Coalescing Operator in C#