You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
541 B
C#

/*
* C# Program to Demonstrate iscollection.synchronised
*/
using System;
using System.Collections;
public class CountArray
{
public static void Main()
{
string[] strings = { "Ajax", "Atlas" };
DisplayCollectionProperty(strings);
Console.ReadLine();
}
public static void DisplayCollectionProperty
(ICollection iCollection)
{
Console.WriteLine("IsSynchronized: {0}",
iCollection.IsSynchronized);
}
}
/*
IsSynchronized: False