Array length: Difference between revisions

no edit summary
(Adds slope example)
No edit summary
Line 676:
<pre>Number of elements in array = 2
Number of bytes in all elements combined = 11</pre>
 
=={{header|Beef}}==
<syntaxhighlight lang="csharp">using System;
 
namespace ArrayLength
{
class Program
{
public static void Main()
{
var array = new String[]("apple", "orange");
Console.WriteLine(array.Length);
}
}
}
</syntaxhighlight>
 
=={{header|Brat}}==
29

edits