```cs bool Fun(int[] x) => x == null || x.GetType() != typeof(int[]); ``` `Fun` can be `false`, because you can call it like following: ```cs Fun((int[])(object)new uint[0]); ```
Funcan befalse, because you can call it like following: