List.AsReadOnly() : List « System.Collections.Generic « C# / C Sharp by API






List.AsReadOnly()

  

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;

public class MainClass
{
    public static void Main()
    {
        List<int> intList = new List<int>(new int[] { 3, 5, 15, 1003, 25 });
        ReadOnlyCollection<int> roList = intList.AsReadOnly();
    }
}

   
    
  








Related examples in the same category

1.new List()
2.extends List
3.List.Add
4.List.Capacity
5.List.ConvertAll
6.List.Count
7.List.ForEach
8.List.Remove()