C# 클래스 System.Linq.Expressions.Interpreter.Interpreter

A simple forth-style stack machine for executing Expression trees without the need to compile to IL and then invoke the JIT. This trades off much faster compilation time for a slower execution performance. For code that is only run a small number of times this can be a sweet spot. The core loop in the interpreter is the Run(InterpretedFrame) method.
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Interpreter System.Collections.Generic
Run void

비공개 메소드들

메소드 설명
Interpreter ( string name, LocalVariables locals, System.Linq.Expressions.Interpreter.InstructionArray instructions, DebugInfo debugInfos ) : System.Collections.Generic
Run ( InterpretedFrame frame ) : void