a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
13 lines
233 B
C#
13 lines
233 B
C#
// 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;
|
|
}
|
|
}
|