我有两种方法;其中一个位于一个类之外,另一个位于类中。我希望能够使用CodeDom从类外部的方法调用到类内部的方法。通过使用代码,这将更容易解释......
内有方法的课程:
public static class Public
{
public static byte[] ReadAllData(string sFilePath)
{
byte[] b = new byte[sFilePath.Length];
b = System.IO.File.ReadAllBytes(sFilePath);
return b;
}
}
**来自另一个班级:
Public.ReadAllData(@"C:\File.exe");
我想使用 CodeDom
-
CodeMemberMethod method = new CodeMemberMethod();
method.Statements.Add(new CodePropertyReferenceExpression(
new CodeVariableExpression("Public"), "ReadAllData"));
以上代码会产生以下输出 - 但请注意我无法传递任何参数!
Public.ReadAllData;
答案 0 :(得分:7)
var compiler = new CSharpCodeProvider();
var invocation = new CodeMethodInvokeExpression(
new CodeTypeReferenceExpression(typeof(Public)),
"ReadAllData", new CodePrimitiveExpression(@"C:\File.exe"));
var stringWriter = new StringWriter();
compiler.GenerateCodeFromExpression(invocation, stringWriter, null);
Console.WriteLine(stringWriter.ToString());
此代码生成结果
ConsoleApplication1.Public.ReadAllData("C:\\File.exe")
另一种选择是
var invocation = new CodeMethodInvokeExpression(
new CodeMethodReferenceExpression(
new CodeTypeReferenceExpression(typeof(Public)),"ReadAllData"),
new CodePrimitiveExpression(@"C:\File.exe"));
在调用泛型方法时,以这种方式使用CodeMethodReferenceExpression
可能很有用:您可以在其构造函数中指定类型参数。
答案 1 :(得分:0)
我只使用了CodeDom,但我认为你需要CodeMethodInvokeExpression而不是CodePropertyReferenceExpression。看起来CodePropertyReferenceExpression正在生成一个访问属性值的语句,而不是调用方法。
CodeMethodInvokeExpression上有一个Parameters属性,允许您指定要传递给想要调用的方法的参数。