새 코드를 생성하고 .NET에서 즉시 실행할 수 있나요?
사용자가 텍스트 상자를 만들고 이를 들어오는 데이터 포인트에 적용합니다. 모든 계산에 대해 방정식의 텍스트를 구문 분석하는 것이 초기 접근 방식이었지만 런타임에 방정식을 함수로 컴파일하는 보다 효율적인 솔루션을 모색합니다.
.NET에서는 Microsoft에 있는 기술을 사용하여 실제로 이것이 가능합니다. CSharp, System.CodeDom.Compiler 및 System.Reflection 네임스페이스. 간단한 콘솔 애플리케이션으로 이 개념을 설명할 수 있습니다.
using Microsoft.CSharp; using System; using System.CodeDom.Compiler; using System.Reflection; namespace RuntimeCompilationTest { class Program { static void Main(string[] args) { // Define the source code for the SomeClass class string sourceCode = @" public class SomeClass { public int Add42 (int parameter) { return parameter += 42; } }"; // Set up compilation parameters var compParms = new CompilerParameters{ GenerateExecutable = false, GenerateInMemory = true }; // Create a C# code provider var csProvider = new CSharpCodeProvider(); // Compile the source code CompilerResults compilerResults = csProvider.CompileAssemblyFromSource(compParms, sourceCode); // Create an instance of the SomeClass type object typeInstance = compilerResults.CompiledAssembly.CreateInstance("SomeClass"); // Get the Add42 method MethodInfo mi = typeInstance.GetType().GetMethod("Add42"); // Invoke the Add42 method and display the output int methodOutput = (int)mi.Invoke(typeInstance, new object[] { 1 }); Console.WriteLine(methodOutput); Console.ReadLine(); } } }
이 코드에서:
이 데모는 컴파일 및 실행 기능을 보여줍니다. .NET에서 동적으로 새 코드를 작성합니다.
위 내용은 .NET은 런타임에 동적으로 코드를 컴파일하고 실행할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!