Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsInner()

bool System.Reflection.Emit.__ExceptionInfo.IsInner ( __ExceptionInfo exc)
inlinepackage

Definition at line 176 of file __ExceptionInfo.cs.

177 {
178 int num = exc.m_currentCatch - 1;
179 int num2 = m_currentCatch - 1;
180 if (exc.m_catchEndAddr[num] < m_catchEndAddr[num2])
181 {
182 return true;
183 }
184 if (exc.m_catchEndAddr[num] != m_catchEndAddr[num2])
185 {
186 return false;
187 }
188 return exc.GetEndAddress() > GetEndAddress();
189 }

References System.Reflection.Emit.__ExceptionInfo.GetEndAddress(), System.Reflection.Emit.__ExceptionInfo.m_catchEndAddr, and System.Reflection.Emit.__ExceptionInfo.m_currentCatch.