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 VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Dim arr As String() = {"VB.NET", "C", "C++", "PHP", "C#"}

        Dim ilist As IList(Of String) = Array.AsReadOnly(arr)

        Console.WriteLine(ilist(0)) ' VB.NET

        Try
            ilist(1) = "Java" ' Error
        Catch e As NotSupportedException
            Console.WriteLine("{0} - {1}", e.GetType(), e.Message)
        End Try

    End Sub

End Module

' run:
' 
' VB.NET
' System.NotSupportedException - Collection Is read - only.

 



answered Apr 8, 2016 by avibootz

Related questions

1 answer 193 views
1 answer 213 views
1 answer 147 views
147 views asked Dec 3, 2020 by avibootz
1 answer 107 views
107 views asked Mar 4, 2024 by avibootz
...