2 // struct with a constructor
10 MethodSignature ms
= new MethodSignature ("hello", null, null);
12 Console
.WriteLine ("About to look for: " + ms
.Name
);
16 struct MethodSignature
{
19 public Type
[] Parameters
;
21 public MethodSignature (string name
, Type ret_type
, Type
[] parameters
)
25 Parameters
= parameters
;