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 create a read-only IList wrapper around an array with Array.AsReadOnly() method 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);

            Console.WriteLine(ilist[0]); // C#

            try
            {
               ilist[0] = "Java"; // Error
            }
            catch (NotSupportedException e)
            {
               Console.WriteLine("{0} - {1}", e.GetType(), e.Message);
            }
        }
    }
}


/*
run:

C#
System.NotSupportedException - Collection is read-only.

*/

 



answered Apr 8, 2016 by avibootz

Related questions

1 answer 213 views
1 answer 193 views
1 answer 147 views
147 views asked Dec 3, 2020 by avibootz
1 answer 133 views
133 views asked Jan 19, 2017 by avibootz
...