
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
What is the Item property of SortedList class in C#?
A sorted list is a combination of an array and a hash table. It contains a list of items that can be accessed using a key or an index.
Gets and sets the value associated with a specific key in the SortedList.
You can also use the Item property to add new elements.
If a key does not exist, then you can include it like.
myCollection["myNonexistentKey"] = myValue
If the key already exist, then it will overwrite it with the new key and value.
The following is an example to learn how to work with Item property of SorteList class in C#.
Example
using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { SortedList s = new SortedList(); s.Add("S001", "Jack"); s.Add("S002", "Henry"); s["S003"] = "Brad"; // get a collection of the keys. ICollection key = s.Keys; foreach (string k in key) { Console.WriteLine(k + ": " + s[k]); } } } }
Output
S001: Jack S002: Henry S003: Brad
- Related Articles
- What is the Capacity property of SortedList class in C#?
- What is the Count property of SortedList class in C#?
- What is the Values property of SortedList class in C#?
- What is the IsFixedSize property of SortedList class in C#?
- What is the IsReadOnly property of SortedList class in C#?
- What is the Keys property of SortedList class in C#?
- What is the Item property of BitArray class in C#?
- What is the Item property of ArrayList class in C#?
- What is the Item property of Hashtable class in C#?
- What is the SortedList class in C#?
- What is the Count property of ArrayList class in C#?
- What is the Count property of BitArray class in C#?
- What is the Count property of Hashtable class in C#?
- What is the Count property of Queue class in C#?
- What is the Count property of Stack class in C#?

Advertisements