blob: 9f52ab348c7b8a642e573fe1446790cf9476ab6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0120: An object reference is required to access non-static member `Test.ArrayList'
// Line: 10
using System.Collections;
public class Test {
ArrayList ArrayList;
public static void Main () {
ArrayList.Capacity = 5;
}
}
|