2 using System
.Collections
.Generic
;
8 static void Main(string[] args
)
10 List
<string> str
= null;
12 object[] methodArgs
= new object[] { str }
;
14 Program p
= new Program();
15 p
.GetType().GetMethod("TestMethod").Invoke(p
, methodArgs
);
22 public void TestMethod(ref List
<string> strArg
)
24 strArg
= new List
<string>();