我可以使用反射动态构建如下所示的类吗?没有方法,只有公共变量,有些有自定义属性。
是否需要.Emit方法(从我所看到的,“Emit”看起来有点挑战)。
我正在使用www.FileHelpers.net中的软件,它需要一个课程。我的所有文件定义都在数据库表中,我想使所有内容更加动态(即当文件中出现新列时,代码不会更改)。
[FileHelpers.DelimitedRecord(",")]
public class FileRow
{
[FileHelpers.FieldQuoted('"', QuoteMode.OptionalForBoth)]
public string Borrower_First_Name;
[FileHelpers.FieldQuoted('"', QuoteMode.OptionalForBoth)]
public string Borrower_Last_Name;
public string Borrower_Email;
}
更新1:根据Vlad的回答,我需要引用DLL,这是我如何做到的:
// need to reference the FileHelpers.dll from our own .exe directory
string diskFilenameFileHelpersDLL =
System.IO.Path.GetDirectoryName(
System.Reflection.Assembly.GetExecutingAssembly().Location) +
@"\FileHelpers.dll";
更新2:此外,在做了Vlad建议之后,这就是我调用FileHelper并循环结果的方法。我可能会将数据传输到列表中。
Assembly assembly = compiledResult.CompiledAssembly;
// Simple Data Test
lineContents = "John,Doe,jd123456@yahoo.com";
FileHelperEngine engine = new FileHelperEngine(assembly.GetType("FileRow"));
// FileRow[] FileRowArray = (FileRow[])engine.ReadString(lineContents);
Object[] FileRowArray = engine.ReadString(lineContents);
Object myObject = FileRowArray[0]; // only 1 row of data in this example
// Get the type handle of a specified class.
Type myType = assembly.GetType("FileRow");
// Get the fields of the specified class.
FieldInfo[] myField = myType.GetFields();
Console.WriteLine("\nDisplaying fields values:\n");
for (int i = 0; i < myField.Length; i++)
{
Object objTest = myField.GetValue(i);
string tempName = myField[i].Name;
Object objTempValue = myField[i].GetValue(myObject);
string tempValue = System.Convert.ToString(objTempValue);
Console.WriteLine("The value of {0} is: {1}",
tempName, tempValue);
}
答案 0 :(得分:2)
您还可以使用CodeDOM动态生成您的类。欲了解更多信息,请访问
答案 1 :(得分:2)
如果您的代码以字符串形式存储在数据库中,您可以执行以下操作来创建程序集:
我注释掉属性的原因是因为我没有它们的命名空间。我假设你有命名空间,你需要将它添加到你的代码中进行编译。
代码适用于LINQPad,因此您只需复制和粘贴即可。
using System;
using System.Reflection;
using System.CodeDom.Compiler;
using Microsoft.CSharp;
void Main()
{
StringBuilder dc = new StringBuilder(512);
dc.Append("public class FileRow");
dc.Append("{");
//dc.Append("[FileHelpers.FieldQuoted('\"', QuoteMode.OptionalForBoth)]");
dc.Append("public string Borrower_First_Name;");
//dc.Append("[FileHelpers.FieldQuoted('\"', QuoteMode.OptionalForBoth)]");
dc.Append("public string Borrower_Last_Name;");
dc.Append("public string Borrower_Email;");
dc.Append("}");
CompilerResults compiledResult = CompileScript(dc.ToString());
if (compiledResult.Errors.HasErrors)
{
Console.WriteLine (compiledResult.Errors[0].ErrorText);
throw new InvalidOperationException("Invalid Expression syntax");
}
Assembly assembly = compiledResult.CompiledAssembly;
// This is just for testing purposes.
FieldInfo field = assembly.GetType("FileRow").GetField("Borrower_First_Name");
Console.WriteLine (field.Name);
Console.WriteLine (field.FieldType);
}
public static CompilerResults CompileScript(string source)
{
CompilerParameters parms = new CompilerParameters();
parms.GenerateExecutable = false;
parms.GenerateInMemory = true;
parms.IncludeDebugInformation = false;
CodeDomProvider compiler = CSharpCodeProvider.CreateProvider("CSharp");
return compiler.CompileAssemblyFromSource(parms, source);
}