生成方法,如int MethodA(int a,params string[] b);
怎么声明定义/这个方法,params,msdn是有ref,out的例子,没有params的例子
// Declares a method.
CodeMemberMethod method1 = new CodeMemberMethod();
method1.set_Name("TestMethod");
// Declares a string parameter passed by reference.
CodeParameterDeclarationExpression param1 = new 
    CodeParameterDeclarationExpression("System.String", "stringParam");
param1.set_Direction(FieldDirection.Ref);
method1.get_Parameters().Add(param1);
// Declares a Int32 parameter passed by incoming field.
CodeParameterDeclarationExpression param2 = new 
    CodeParameterDeclarationExpression("System.Int32", "intParam");
param2.set_Direction(FieldDirection.Out);
method1.get_Parameters().Add(param2);
// A VJ# code generator produces the following source code for 
// the preceeding example code:
//    private void TestMethod(/** @ref */ String stringParam,
//        /** @ref */  int intParam)
//    {
//    } //TestMethod