[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-anontype-03.cs
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 }