2 using System
.Linq
.Expressions
;
6 public class MonoRuntime
8 public static int Main ()
10 // This constructor throws ArgumentException:
11 // The field handle and the type handle are incompatible.
12 new GenericClass
<object> ("value");
17 public class GenericClass
<T
>
19 public GenericClass (string argument
)
21 Expression
<Func
<string>> expression
= () => argument
;