Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to change the value of a read-only IList wrapper around an array in C#

1 Answer

0 votes
using System;
using System.Collections.Generic;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            String[] arr = {"C#", "C", "C++", "PHP", "VB.NET"};

            IList<String> ilist = Array.AsReadOnly(arr);

            arr[3] = "Java";
            Console.WriteLine("arr:");
            PrintIndexAndValues(ilist);
            Console.WriteLine("ilist:");
            PrintIndexAndValues(arr);
        }
        public static void PrintIndexAndValues(String[] arr)
        {
            for (int i = 0; i < arr.Length; i++)
                Console.WriteLine("[{0}] : {1}", i, arr[i]);
        }
        public static void PrintIndexAndValues(IList<String> ilist)
        {
            for (int i = 0; i < ilist.Count; i++)
                Console.WriteLine("[{0}] : {1}", i, ilist[i]);
        }
    }
}


/*
run:

arr:
[0] : C#
[1] : C
[2] : C++
[3] : Java
[4] : VB.NET
ilist:
[0] : C#
[1] : C
[2] : C++
[3] : Java
[4] : VB.NET

*/

 



answered Apr 8, 2016 by avibootz

Related questions

...