Home »
.Net »
C# Programs
C# - SortedList.Clear() Method with Example
In this tutorial, we will learn about the C# SortedList.Clear() method with its definition, usage, syntax, and example.
By Nidhi Last updated : March 31, 2023
SortedList.Clear() Method
The SortedList.Clear() method is used to remove all elements from a SortedList object.
Syntax
void SortedList.Clear();
Parameter(s)
Return Value
It does not return any value.
C# Example of SortedList.Clear() Method
The source code to remove all elements from a SortedList object is given below. The given program is compiled and executed successfully.
using System;
using System.Collections;
class SortedListEx {
//Entry point of Program
static public void Main() {
//Creation of SortedList object
SortedList list = new SortedList();
//Add elements to SortedList
list.Add(101, "India ");
list.Add(105, "America ");
list.Add(102, "Austrelia");
list.Add(103, "Africa ");
list.Add(104, "Canada ");
Console.WriteLine("Count before Clear() method : " + list.Count);
list.Clear();
Console.WriteLine("Count after Clear() method : " + list.Count);
}
}
Output
Count before Clear() method : 5
Count after Clear() method : 0
Press any key to continue . . .
C# SortedList Class Programs »