14 lines
217 B
Text
14 lines
217 B
Text
using System;
|
|
|
|
namespace ArrayLength
|
|
{
|
|
class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
var array = new String[]("apple", "orange");
|
|
Console.WriteLine(array.Count);
|
|
delete(array);
|
|
}
|
|
}
|
|
}
|