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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0200-5.cs
blob
4657362f8295cf9db024213be1b330ee7efc05cf
1
// CS0200: Property or indexer `C.S' cannot be assigned to (it is read-only)
2
// Line: 10
3
4
class
C
5
{
6
public static int
S { get; }
7
8
public
C
()
9
{
10
S
=
3
;
11
}
12
}