repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0501-2.cs
blob
aa46d0ad9b8c061145c574f64a923bff98f1a700
1
// CS0501: `Test.this[string].get' must have a body because it is not marked abstract, extern, or partial
2
// Line: 6
3
4
public abstract class
Test
5
{
6
public string this
[
string
key
]
{ get; set; }
7
}