
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create Synchronized Wrapper for ArrayList in C#
To create a synchronized wrapper for the ArrayList, the code is as follows −
Example
using System; using System.Collections; public class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add("AB"); arrList.Add("CD"); arrList.Add("EF"); arrList.Add("GH"); arrList.Add("IJ"); arrList.Add("KL"); Console.WriteLine("ArrayList elements..."); foreach(string str in arrList) { Console.WriteLine(str); } Console.WriteLine("ArrayList is synchronized? = "+arrList.IsSynchronized); } }
Output
This will produce the following output −
ArrayList elements... AB CD EF GH IJ KL ArrayList is synchronized? = False
Example
Let us see another example −
using System; using System.Collections; public class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add("AB"); arrList.Add("CD"); arrList.Add("EF"); arrList.Add("GH"); arrList.Add("IJ"); arrList.Add("KL"); Console.WriteLine("ArrayList elements..."); foreach(string str in arrList) { Console.WriteLine(str); } Console.WriteLine("ArrayList is synchronized? = "+arrList.IsSynchronized); ArrayList arrList2 = ArrayList.Synchronized(arrList); Console.WriteLine("ArrayList is synchronized? = "+arrList2.IsSynchronized); } }
Output
This will produce the following output −
ArrayList elements... AB CD EF GH IJ KL ArrayList is synchronized? = False ArrayList is synchronized? = True
Advertisements