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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0122-21.cs
blob
78a63ca4ffa73c8ac7a671929dcbe9757f556f3e
1
// CS0122: `Const.Version' is inaccessible due to its protection level
2
// Line: 6
3
4
using
System
.
Reflection
;
5
6
[
assembly
:
AssemblyVersion
(
Const
.
Version
)]
7
8
class
Const
9
{
10
const string
Version
=
"0.1"
;
11
}