誰かがなぜこれが起こっているのか説明してもらえますか?
var y = new int[]{1,2};
Console.WriteLine(y is uint[]); // false
Console.WriteLine(((object)y) is uint[]); // true
誰かがなぜこれが起こっているのか説明してもらえますか?
var y = new int[]{1,2};
Console.WriteLine(y is uint[]); // false
Console.WriteLine(((object)y) is uint[]); // true