C# Класс System.Runtime.CompilerServices.DebugInfoGenerator

Generates debug information for lambdas in an expression tree.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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