cleol
[mcs.git] / errors / cs0120-8.cs
blob9f52ab348c7b8a642e573fe1446790cf9476ab6b
1 // CS0120: An object reference is required to access non-static member `Test.ArrayList'
2 // Line: 10
4 using System.Collections;
6 public class Test {
7 ArrayList ArrayList;
9 public static void Main () {
10 ArrayList.Capacity = 5;