repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0120-8.cs
blob
9f52ab348c7b8a642e573fe1446790cf9476ab6b
1
// CS0120: An object reference is required to access non-static member `Test.ArrayList'
2
// Line: 10
3
4
using
System
.
Collections
;
5
6
public class
Test
{
7
ArrayList ArrayList
;
8
9
public static void
Main
() {
10
ArrayList
.
Capacity
=
5
;
11
}
12
}