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
/
cs0619-29.cs
blob
06822191e211f12c52f54714e7cea1aeb31d1369
1
// CS0619-29: `Obsolete.Error' is obsolete: `Do not use it.'
2
// Line: 15
3
4
class
Obsolete
{
5
[
System
.
Obsolete
(
"Do not use it."
,
true
)]
6
public static bool
Error
{
7
get
{
8
return false
;
9
}
10
}
11
}
12
13
class
MainClass
{
14
public static void
Main
() {
15
System
.
Console
.
WriteLine
(
Obsolete
.
Error
);
16
}
17
}