Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by AmitDiwan
Page 205 of 840
Removing all entries from the StringDictionary in C#
The StringDictionary class in C# provides a collection of string key-value pairs. To remove all entries from a StringDictionary, you use the Clear() method, which empties the entire collection in a single operation. Syntax Following is the syntax for removing all entries from a StringDictionary − stringDictionary.Clear(); Parameters The Clear() method takes no parameters and returns void. It removes all key-value pairs from the StringDictionary and sets the Count property to zero. Using Clear() Method Example using System; using System.Collections; using System.Collections.Specialized; public class Demo { ...
Read MoreRemoving all nodes from LinkedList in C#
The LinkedList class in C# provides the Clear() method to remove all nodes from a LinkedList efficiently. This method removes all elements and sets the Count property to zero. Syntax Following is the syntax for the Clear() method − public void Clear() Parameters The Clear() method does not take any parameters. Return Value The Clear() method does not return any value. It modifies the LinkedList by removing all nodes. Using Clear() with Integer LinkedList The following example demonstrates how to remove all nodes from a LinkedList containing integers − ...
Read MoreGet an enumerator that iterates through StringCollection in C#
The StringCollection class in C# provides a GetEnumerator() method that returns a StringEnumerator object. This enumerator allows you to iterate through the collection elements one by one using the MoveNext() and Current properties. Syntax Following is the syntax for getting an enumerator from StringCollection − StringEnumerator enumerator = stringCollection.GetEnumerator(); Following is the syntax for iterating using the enumerator − while (enumerator.MoveNext()) { Console.WriteLine(enumerator.Current); } Using GetEnumerator() with StringCollection The GetEnumerator() method returns a StringEnumerator that provides MoveNext() and Current members for manual iteration − Example ...
Read MoreGet or set the element at the specified index in ArrayList in C#
The ArrayList class in C# provides an indexer property that allows you to get or set elements at a specified index using square bracket notation. This property provides direct access to elements by their position in the collection. Syntax Following is the syntax for accessing elements by index in ArrayList − // Get element at index object element = arrayList[index]; // Set element at index arrayList[index] = value; Parameters index − The zero-based index of the element to get or set. value − The object to store at the specified index ...
Read MoreGet an enumerator that iterates through the Dictionary in C#
To get an enumerator that iterates through a Dictionary in C#, you use the GetEnumerator() method which returns an IDictionaryEnumerator. This enumerator provides access to both keys and values as you iterate through the dictionary's key-value pairs. Syntax Following is the syntax for getting a Dictionary enumerator − IDictionaryEnumerator enumerator = dictionary.GetEnumerator(); The enumerator is used with MoveNext() to advance through the collection − while (enumerator.MoveNext()) { Console.WriteLine("Key = " + enumerator.Key + ", Value = " + enumerator.Value); } Using Dictionary Enumerator with Integer Keys ...
Read MoreCheck if an array is read-only or not in C#
In C#, arrays are typically mutable by default, meaning their elements can be modified after creation. However, you can check if an array is read-only using the IsReadOnly property from the ICollection interface. The IsReadOnly property returns true if the array cannot be modified, and false if elements can be changed. Regular arrays in C# always return false for this property. Syntax Following is the syntax to check if an array is read-only − bool isReadOnly = arrayName.IsReadOnly; Using IsReadOnly Property Example The following example demonstrates how to check if an ...
Read MoreBitwise OR operation between the elements of BitArray in C#
The Bitwise OR operation between elements of BitArray in C# is performed using the Or() method. This method performs a logical OR operation on corresponding bits of two BitArray objects, returning true when at least one of the corresponding bits is true. Syntax Following is the syntax for performing Bitwise OR operation on BitArray − BitArray result = bitArray1.Or(bitArray2); Parameters bitArray2 − The BitArray with which to perform the bitwise OR operation. Return Value The method returns the current BitArray instance containing the result of the bitwise OR operation. ...
Read MoreCheck if a HashSet contains the specified element in C#
In C#, you can check if a HashSet contains a specified element using the Contains() method. This method returns true if the element exists in the HashSet, and false otherwise. The Contains() method provides O(1) average time complexity, making it very efficient for membership testing. Syntax Following is the syntax for using the Contains() method − bool result = hashSet.Contains(element); Parameters element − The element to locate in the HashSet. Return Value The Contains() method returns a bool value − true if the element is found in ...
Read MoreCheck if a HashSet is a proper subset of the specified collection in C#
The IsProperSubsetOf() method in C# determines whether a HashSet is a proper subset of a specified collection. A proper subset means all elements of the first set exist in the second set, but the second set contains additional elements that are not in the first set. Syntax Following is the syntax for the IsProperSubsetOf() method − public bool IsProperSubsetOf(IEnumerable other) Parameters other − The collection to compare to the current HashSet Return Value Returns true if the current HashSet is a proper subset of the specified collection; otherwise, false. ...
Read MoreCheck if an array object is equal to another array object in C#
To check if an array object is equal to another array object in C#, you need to understand the difference between reference equality and value equality. The Equals() method checks reference equality by default, meaning it returns true only if both variables point to the same array object in memory. For comparing array contents (value equality), you need to use methods like SequenceEqual() from LINQ or implement custom comparison logic. Reference Equality vs Value Equality Array Equality Types Reference Equality arr1.Equals(arr2) Checks if both ...
Read More