C# 클래스 System.Runtime.CompilerServices.DebugInfoGenerator

Generates debug information for lambdas in an expression tree.
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

공개 메소드들

메소드 설명
CreatePdbGenerator ( ) : DebugInfoGenerator

Creates PDB symbol generator.

MarkSequencePoint ( LambdaExpression method, int ilOffset, DebugInfoExpression sequencePoint ) : void

Marks a sequence point.

비공개 메소드들

메소드 설명
MarkSequencePoint ( LambdaExpression method, MethodBase methodBase, ILGenerator ilg, DebugInfoExpression sequencePoint ) : void
SetLocalName ( LocalBuilder localBuilder, string name ) : void

메소드 상세

CreatePdbGenerator() 공개 정적인 메소드

Creates PDB symbol generator.
public static CreatePdbGenerator ( ) : DebugInfoGenerator
리턴 DebugInfoGenerator

MarkSequencePoint() 공개 추상적인 메소드

Marks a sequence point.
public abstract MarkSequencePoint ( LambdaExpression method, int ilOffset, DebugInfoExpression sequencePoint ) : void
method System.Linq.Expressions.LambdaExpression The lambda being generated.
ilOffset int IL offset where to mark the sequence point.
sequencePoint System.Linq.Expressions.DebugInfoExpression Debug information corresponding to the sequence point.
리턴 void