blob: 0045986fed54c92c84a61a381962c9c003e53eff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0021: Cannot apply indexing with [] to an expression of type `System.Array'
// Line: 9
using System;
class X
{
public void Foo (Array bar)
{
object baz = bar[0];
}
}
|