Check if the Hashtable contains a specific value in C#

AmitDiwan
Updated on 17-Mar-2026 07:04:36

296 Views

To check if a Hashtable contains a specific value in C#, you use the ContainsValue() method. This method returns true if the specified value exists in the Hashtable, and false otherwise. Syntax Following is the syntax for checking if a Hashtable contains a specific value − bool result = hashtable.ContainsValue(value); Parameters value − The value to search for in the Hashtable. It can be null. Return Value Returns true if the Hashtable contains the specified value; otherwise, false. Using ContainsValue() with Different Data Types Example ... Read More

Getting the list of keys of a SortedList object in C#

AmitDiwan
Updated on 17-Mar-2026 07:04:36

796 Views

The SortedList class in C# provides the GetKeyList() method to retrieve all keys as an IList collection. This method returns keys in their sorted order, making it useful for accessing or iterating through keys separately from their values. Syntax Following is the syntax for getting the list of keys from a SortedList − IList keyList = sortedList.GetKeyList(); Return Value The GetKeyList() method returns an IList object containing all the keys from the SortedList in sorted order. The returned list is read-only and reflects the current state of the SortedList. Using GetKeyList() Method ... Read More

How do we specify MIME type in Asp.Net WebAPI C#?

Nizamuddin Siddiqui
Updated on 17-Mar-2026 07:04:36

2K+ Views

A media type, also called a MIME type, identifies the format of a piece of data. In HTTP, media types describe the format of the message body. A media type consists of two strings, a type and a subtype. For example − text/html image/png application/json When an HTTP message contains an entity-body, the Content-Type header specifies the format of the message body. This tells the receiver how to parse the contents of the message body. When the client sends a request message, it can include an Accept header. The Accept header tells the server which ... Read More

Check if two SortedDictionary objects are equal in C#

Siva Sai
Updated on 17-Mar-2026 07:04:36

426 Views

SortedDictionary in C# is a binary tree-based implementation that maintains its elements in key order. It is a collection of key/value pairs that are sorted on the basis of the key. This article will guide you step-by-step on how to check if two SortedDictionary objects are equal in C#. Understanding SortedDictionary in C# A SortedDictionary is a binary tree-based collection in C# that stores key-value pairs in sorted order of the keys. It's part of the System.Collections.Generic namespace and provides O(log n) performance for most operations. Here is an example of a SortedDictionary − SortedDictionary ... Read More

Check if a SortedSet object is a proper subset of the specified collection in C#

AmitDiwan
Updated on 17-Mar-2026 07:04:36

150 Views

A proper subset is a set where all elements of one set are contained in another set, but the two sets are not equal. In C#, the SortedSet class provides the IsProperSubsetOf() method to check if a SortedSet is a proper subset of a specified collection. Syntax Following is the syntax for the IsProperSubsetOf() method − public bool IsProperSubsetOf(IEnumerable other) Parameters other − The collection to compare with the current SortedSet. Return Value Returns true if the SortedSet is a proper subset of the specified collection; otherwise, false. ... Read More

Getting the list of Values of a SortedList object in C#

AmitDiwan
Updated on 17-Mar-2026 07:04:36

154 Views

A SortedList in C# is a collection of key-value pairs sorted by keys. To get the list of values from a SortedList object, you can use the GetValueList() method, which returns an IList containing all the values in the same order as their corresponding keys. Syntax Following is the syntax for getting values from a SortedList − SortedList sortedList = new SortedList(); IList valueList = sortedList.GetValueList(); The GetValueList() method returns an IList object containing all values in key-sorted order. Using GetValueList() with Integer Values This example demonstrates how to extract integer values ... Read More

How to run an external application through a C# application?

Nizamuddin Siddiqui
Updated on 17-Mar-2026 07:04:36

5K+ Views

An external application can be run from a C# application using the Process class. A process is a program that is running on your computer. This can be anything from a small background task, such as a spell-checker or system events handler, to a full-blown application like Notepad. Each process provides the resources needed to execute a program and is started with a single thread, known as the primary thread. Processes are heavily dependent on system resources, while threads require minimal resources. The Process class is present in the System.Diagnostics namespace. Syntax Following is the basic syntax ... Read More

Check if a SortedSet object is a proper superset of the specified collection in C#

AmitDiwan
Updated on 17-Mar-2026 07:04:36

188 Views

To check if a SortedSet object is a proper superset of a specified collection in C#, use the IsProperSupersetOf() method. A proper superset contains all elements of another collection plus at least one additional element. Syntax The syntax for the IsProperSupersetOf() method is − public bool IsProperSupersetOf(IEnumerable other) Parameters other − The collection to compare with the current SortedSet. Return Value Returns true if the current SortedSet is a proper superset of the specified collection; otherwise, false. Proper Superset Relationship ... Read More

What is the use of the Configure() method of startup class in C# Asp.net Core?

Nizamuddin Siddiqui
Updated on 17-Mar-2026 07:04:36

2K+ Views

The Configure() method in ASP.NET Core's Startup class is used to define the application's request pipeline. This method configures how the application handles incoming HTTP requests and outgoing responses using middleware components. The Configure() method is called at runtime after the ConfigureServices() method. It receives an IApplicationBuilder instance from the built-in IoC container, which is used to add middleware to the request pipeline. Syntax Following is the basic syntax of the Configure() method − public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { // Configure middleware pipeline } Parameters The ... Read More

Get or set the number of elements that the ArrayList can contain in C#

AmitDiwan
Updated on 17-Mar-2026 07:04:36

169 Views

The Capacity property of an ArrayList in C# gets or sets the number of elements that the ArrayList can contain without resizing. This is different from the Count property, which represents the actual number of elements currently stored in the ArrayList. When elements are added and the capacity is exceeded, the ArrayList automatically doubles its capacity to accommodate more elements. Syntax Following is the syntax for getting the capacity − int capacity = arrayList.Capacity; Following is the syntax for setting the capacity − arrayList.Capacity = newCapacity; Understanding Capacity vs ... Read More

Advertisements