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.

24 lines
484 B
C#

/*
* C# Program to Demonstrate the icollection Count
*/
using System;
using System.Collections;
public class CountArray
{
public static void Main()
{
string[] strings = { "Ajax", "Atlas","a","b"};
DisplayCollectionProperty(strings);
Console.ReadLine();
}
public static void DisplayCollectionProperty
(ICollection iCollection)
{
Console.WriteLine("Count = {0}", iCollection.Count);
}
}
/*
Count=4