Mono.Cecil.Cil.CodeReader.ReadStateMachineScope C# (CSharp) Method

ReadStateMachineScope() private method

private ReadStateMachineScope ( StateMachineScopeDebugInformation state_machine_scope ) : void
state_machine_scope StateMachineScopeDebugInformation
return void
        void ReadStateMachineScope(StateMachineScopeDebugInformation state_machine_scope)
        {
            state_machine_scope.start = new InstructionOffset (GetInstruction (state_machine_scope.start.Offset));

            var end_instruction = GetInstruction (state_machine_scope.end.Offset);
            state_machine_scope.end = end_instruction == null
                ? new InstructionOffset ()
                : new InstructionOffset (end_instruction);
        }