Files
WoofWare.PawPrint/WoofWare.PawPrint.Test/sourcesPure/CastClassArray.cs
2025-06-27 11:41:41 +01:00

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;
}
}