repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0122-37.cs
blob
7c39f7fea3dcfd2ca45562ca6613af4e640f330f
1
// CS0122: `Test.Method' is inaccessible due to its protection level
2
// Line: 17
3
4
public class
Test
5
{
6
protected void
Method
()
7
{
8
}
9
10
private void
Method
(
int
i
)
11
{
12
}
13
}
14
15
public class
C
16
{
17
string
str
=
nameof
(
Test
.
Method
);
18
}