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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0571-2.cs
blob
20b2d9eea62831f6ce634d7c586fafb22dd04ee7
1
// cs0571-2.cs: `System.Reflection.MemberInfo.Name.get': cannot explicitly call operator or accessor
2
// Line: 8
3
using
System
;
4
5
public class
EntryPoint
{
6
public static void
Main
() {
7
Type type
=
typeof
(
string
);
8
Console
.
WriteLine
(
type
.
get_Name
());
9
}
10
}