using System;
public class Program
{
public static void Main()
object notArra = new dynamic [] {"111", 1213, null };
if(notArra is not string[])
throw new Exception("Errror");
Console.WriteLine();
}