mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-16 10:58:40 +00:00
13 lines
270 B
C#
13 lines
270 B
C#
public class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
int[] numbers = new int[] { 1, 2, 3, 4, 5 };
|
|
|
|
// Cast array to System.Array - should succeed
|
|
System.Array array = (System.Array)numbers;
|
|
|
|
return array.Length;
|
|
}
|
|
}
|