4 using System
.Collections
.Generic
;
8 public volatile uint VolatileValue
;
9 public string [] StringValues
;
10 public List
<string> ListValues
;
13 public int? MyTypeProperty
{
27 static void Test (D d
)
31 public static void Main ()
33 Exception diffException
;
38 } catch (Exception ex
) {
48 int[] i_a
= new int [] { 1,2,3 }
;
51 foreach (int t
in i_a
) {
56 Console
.WriteLine (typeof (void));
60 Console
.WriteLine (typeof (Func
<,>));
64 object o
= new List
<object> { "Hello", "", null, "World", 5 }
;
68 var v
= new MemberAccessData
{
69 VolatileValue
= 2, StringValues
= new string [] { "sv" }
, MyTypeProperty
= null