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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
gtest-anontype-03.cs
blob
030c110f11a229efc20a72d0cd138b964e19deec
1
2
// Tests anonymous types initialized with object members
3
using
System
;
4
using
System
.
Collections
;
5
6
public class
MyClass
7
{
8
public string
Foo
=
"Bar"
;
9
public int
Baz
{
10
get
{ return 42; }
11
}
12
}
13
14
public class
Test
15
{
16
public static int
Main
()
17
{
18
MyClass mc
=
new
MyClass
();
19
var
v
=
new
{ mc.Foo, mc.Baz }
;
20
21
if
(
v
.
Foo
!=
"Bar"
)
22
return
1
;
23
if
(
v
.
Baz
!=
42
)
24
return
2
;
25
26
return
0
;
27
}
28
}