private bool InScope(DkmClrMethodScopeData scope)
        {
            uint offset = InstructionAddress.ILOffset;

            return(scope.ILRange.StartOffset <= offset && scope.ILRange.EndOffset >= offset);
        }
 private bool InScope(DkmClrMethodScopeData scope)
 {
     uint offset = InstructionAddress.ILOffset;
     return scope.ILRange.StartOffset <= offset && scope.ILRange.EndOffset >= offset;
 }