c#

C# program to find the sum of odd and even numbers in an array

C# program to find the sum of odd and even numbers in an array. This program will show different ways to find the sum.

Read

C# program to iterate over the characters of a string

C# program to iterate over the characters of a string in different ways. We will use one for loop, while loop, do while loop and foreach to iterate.

Read

C# program to print from 1 to 10 in different ways

C# program to print from 1 to n in different ways. We can use different types of loops to print from 1 to n in C#.

Read

C# program to find the sum of all odd numbers below a given number

C# program to find the sum of all odd numbers below a given number. This post will show how to find the sum with different examples.

Read

C# program to find the sum of all even numbers below a given number

C# program to find the sum of all even numbers below a given number. This post will show how to find the sum with different examples.

Read

C# how to check for a palindrome number

C# program to check if a number is palindrome or not. It will take one number as input from the user and print one message it is palindrome or not.

Read

C# how to check if a HashTable is equal to another HashTable

How to check if two hash tables are equal or not in C#. C# HashTable class provides a Equals method that can be used to compare two hash tables.

Read

C# program to delete an item from a HashTable

Delete or remove an item from a hashtable in C#. C# hashtable provides Remove method that can be used to remove an item from a hashtable.

Read

C# array GetLength method explanation with example

C# array GetLength method explanation with example. GetLength is used to get the length of an array in C#.

Read

C# program to sort an array

C# program to sort an array. C# array provides Array.Sort method to sort an array. This post will show how to use the Sort method.

Read