RosettaCodeData/Task/Array-length/C-sharp/array-length-1.cs

11 lines
165 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
using System;
class Program
{
public static void Main()
{
var fruit = new[] { "apple", "orange" };
Console.WriteLine(fruit.Length);
}
}