12 lines
155 B
C#
Raw Normal View History

// CS0021: Cannot apply indexing with [] to an expression of type `method group'
// Line:
class X
{
public void Foo ()
{
object baz = Foo [0];
}
}