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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0120-9.cs
blob
1bc1835214c20a0f078b65fc4a9bcfa6e2e699a7
1
// CS0120: An object reference is required to access non-static member `X.Y(System.Text.StringBuilder)'
2
// Line: 8
3
4
using
System
.
Text
;
5
6
class
X
{
7
static void
Main
() {
8
X
.
Y
(
null
);
9
}
10
11
void
Y
(
StringBuilder someParam
) {
12
}
13
}