1

我有一个文本文件,如下所示:

AssembleComponent Motor = new AssembleComponent;
AssembleComponent Shaft = new AssembleComponent;
......

Motor.cost = 100;
Motor.quantity = 100;
Shaft.cost = 10;
Shaft.quantity = 100;
......

我希望在 C# 中执行这些代码行,以便将这些 Motor.cost、Motor.quantity、Shaft.cost、Shaft.quantity 变量存储在内存中以供以后计算。

我能做些什么来实现这一目标?

4

5 回答 5

3

将其存储为 XML

<?xml version="1.0" encoding="UTF-8"?>
<Components>
    <Component name="Motor" cost="100" quantity="100" />
    <Component name="Shaft" cost="10" quantity="100" />
</Components>

假设你有这个定义

public class AssembleComponent
{
    public decimal Cost { get; set; }
    public int Quantity { get; set; }
}

像这样加载它

var components = new Dictionary<string, AssembleComponent>();
XDocument doc = XDocument.Load(@"C:\Users\Oli\Desktop\components.xml");
foreach (XElement el in doc.Root.Descendants()) {
    string name = el.Attribute("name").Value;
    decimal cost = Decimal.Parse(el.Attribute("cost").Value);
    int quantity = Int32.Parse(el.Attribute("quantity").Value);
    components.Add(name, new AssembleComponent{ 
                             Cost = cost, Quantity = quantity
                         });
}

然后您可以像这样访问组件

AssembleComponent motor = components["Motor"];
AssembleComponent shaft = components["Shaft"];

注意:通过在运行时调用编译器来动态创建变量名并不是很有用,因为您需要在编译时(或者如果您愿意,可以在设计时)知道它们才能对它们做一些有用的事情。因此,我将组件添加到字典中。这是动态创建“变量”的好方法。

于 2012-10-30T16:37:29.423 回答
2

您可以使用Microsoft.CSharp.CSharpCodeProvider即时编译代码。

具体来说,看看CompileAssemblyFromFile

于 2012-10-30T16:13:38.673 回答
2

如果只是关于数据,请不要使用平面文本文件,而是使用 XML。

您可以将 XML 反序列化为对象并对它们执行必要的操作。

于 2012-10-30T16:15:39.327 回答
2

这是我过去使用的一些代码,尽管您可能需要根据您的特定需求对其进行调整,但它们可以满足您的大部分需求。简而言之,它执行以下操作:

  • 在该命名空间中创建一个临时命名空间和一个公共静态方法。
  • 将代码编译为内存中的程序集。
  • 提取编译的方法并将其转换为委托。
  • 执行委托。

那时它就像执行一个普通的静态方法,所以当你说你想要内存中的结果供以后使用时,你必须弄清楚它是如何工作的。

public void CompileAndExecute(string CodeBody)
{
    // Create the compile unit
    CodeCompileUnit ccu = CreateCode(CodeBody);

    // Compile the code 
    CompilerParameters comp_params = new CompilerParameters();
    comp_params.GenerateExecutable = false;
    comp_params.GenerateInMemory = true;
    comp_params.TreatWarningsAsErrors = true;
    comp_results = code_provider.CompileAssemblyFromDom(comp_params, ccu);

    // CHECK COMPILATION RESULTS
    if (!comp_results.Errors.HasErrors)
    {
        Type output_class_type = comp_results.CompiledAssembly.GetType("TestNamespace.TestClass");

        if (output_class_type != null)    
        {    
            MethodInfo compiled_method = output_class_type.GetMethod("TestMethod", BindingFlags.Static | BindingFlags.Public);    
            if (compiled_method != null)    
            {    
                Delgate created_delegate = Delegate.CreateDelegate(typeof(System.Windows.Forms.MethodInvoker), compiled_method);
                if (created_delegate != null)
                {
                    // Run the code
                    created_delegate.DynamicInvoke();
                }
            }
        }
    }
    else
    {
        foreach (CompilerError error in comp_results.Errors)
        {
            // report the error
        }
    }
}

public CodeCompileUnit CreateCode(string CodeBody)
{
    CodeNamespace code_namespace = new CodeNamespace("TestNamespace");

    // add the class to the namespace, add using statements
    CodeTypeDeclaration code_class = new CodeTypeDeclaration("TestClass");
    code_namespace.Types.Add(code_class);
    code_namespace.Imports.Add(new CodeNamespaceImport("System"));

    // set function details
    CodeMemberMethod method = new CodeMemberMethod();
    method.Attributes = MemberAttributes.Public | MemberAttributes.Static;
    method.ReturnType = new CodeTypeReference(typeof(void));
    method.Name = "TestMethod";

    // add the user typed code
    method.Statements.Add(new CodeSnippetExpression(CodeBody));

    // add the method to the class
    code_class.Members.Add(method);

    // create a CodeCompileUnit to pass to our compiler
    CodeCompileUnit ccu = new CodeCompileUnit();
    ccu.Namespaces.Add(code_namespace);

    return ccu;
}
于 2012-10-30T16:44:24.823 回答
0

您有两个主要选择:

  1. 展开文本直到它成为有效的 C# 代码,编译并执行它
  2. 解析它并自己执行它(即解释它)。
于 2012-10-30T16:15:34.820 回答