×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# - SortedList.GetValueList() Method with Example

In this tutorial, we will learn about the C# SortedList.GetValueList() method with its definition, usage, syntax, and example. By Nidhi Last updated : March 31, 2023

SortedList.GetValueList() Method

The SortedList.GetValueList() is used to get the values from a SortedList.

Syntax

IList SortedList.GetValueList();

Parameter(s)

This does not accept any parameter.

Return Value

It returns a IList that contains all the values of a SortedList object.

C# Example of SortedList.GetValueList() Method

The source code to get the values in a SortedList 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(1, "India");
    list.Add(5, "America");
    list.Add(2, "Austrelia");
    list.Add(3, "Africa");
    list.Add(4, "Canada");

    Console.WriteLine("List Elements are:");
    foreach(string value in list.GetValueList()) {
      Console.WriteLine("\t" + value);
    }
  }
}

Output

List Elements are:
India
Austrelia
Africa
Canada
America
Press any key to continue . . .

C# SortedList Class Programs »



Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.