11 lines
165 B
C#
11 lines
165 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
class Program
|
||
|
|
{
|
||
|
|
public static void Main()
|
||
|
|
{
|
||
|
|
var fruit = new[] { "apple", "orange" };
|
||
|
|
Console.WriteLine(fruit.Length);
|
||
|
|
}
|
||
|
|
}
|