Mono.Cecil.Cil.PortablePdbReader.Read C# (CSharp) Method

Read() public method

public Read ( MethodDefinition method ) : MethodDebugInformation
method MethodDefinition
return MethodDebugInformation
        public MethodDebugInformation Read(MethodDefinition method)
        {
            var info = new MethodDebugInformation (method);
            ReadSequencePoints (info);
            ReadScope (info);
            ReadStateMachineKickOffMethod (info);
            ReadCustomDebugInformations (info);
            return info;
        }

Usage Example

Esempio n. 1
0
 public MethodDebugInformation Read(MethodDefinition method)
 {
     return(reader.Read(method));
 }