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
Remove signing from Jenkins MSI pipeline
[mono-project.git]
/
mcs
/
errors
/
cs0619-48.cs
blob
5f128efa7ce19ccde8f444f5abd497da83809cd5
1
// CS0619-48: `A.Prop' is obsolete: `!!!'
2
// Line: 13
3
4
class
A
:
System
.
Attribute
5
{
6
[
System
.
Obsolete
(
"!!!"
,
true
)]
7
public string
Prop
{
8
set
{ }
9
get
{ return ""; }
10
}
11
}
12
13
[
A
(
Prop
=
"System.String.Empty"
)]
14
class
Obsolete
{
15
}