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
Fix FxCop warning CA1018 (attributes should have AttributeUsage)
[mono-project.git]
/
mcs
/
errors
/
cs0619-6.cs
blob
38d612fc8b49647d0f35c4b89d52bfdf4fea2747
1
// CS0619: `A._value' is obsolete: `Do not use it'
2
// Line: 9
3
4
class
A
{
5
[
System
.
Obsolete
(
"Do not use it"
,
true
)]
6
int
_value
;
7
8
public
A
() {
9
_value
=
4
;
10
}
11
}