You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/coreclr/System.Private.CoreLib/src/System/Reflection/Emit/DynamicILGenerator.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -939,7 +939,7 @@ public unsafe void SetCode(byte* code, int codeSize, int maxStackSize)
939
939
/// </summary>
940
940
/// <param name="exceptions">An array that contains the exception metadata.</param>
941
941
/// <remarks>
942
-
/// The exception metadata for a method defines the location and size of all `try`, `catch`, `finally`, filter, and fault blocks. For information on the layout of this metadata, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics". For more information, see <see href="https://www.ecma-international.org/publications-and-standards/standards/ecma-335/">ECMA 335 Common Language Infrastructure (CLI)</see>.
942
+
/// The exception metadata for a method defines the location and size of all <c>try</c>, <c>catch</c>, <c>finally</c>, filter, and fault blocks. For information on the layout of this metadata, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics". For more information, see <see href="https://www.ecma-international.org/publications-and-standards/standards/ecma-335/">ECMA 335 Common Language Infrastructure (CLI)</see>.
943
943
/// </remarks>
944
944
publicvoidSetExceptions(byte[]?exceptions)
945
945
{
@@ -952,7 +952,7 @@ public void SetExceptions(byte[]? exceptions)
952
952
/// <param name="exceptions">A pointer to a byte array containing the exception metadata.</param>
953
953
/// <param name="exceptionsSize">The number of bytes of exception metadata.</param>
954
954
/// <remarks>
955
-
/// The exception metadata for a method defines the location and size of all `try`, `catch`, `finally`, filter, and fault blocks. For information on the layout of this metadata, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics" and "Partition III: CIL Instruction Set". For more information, see <see href="https://www.ecma-international.org/publications-and-standards/standards/ecma-335/">ECMA 335 Common Language Infrastructure (CLI)</see>.
955
+
/// The exception metadata for a method defines the location and size of all <c>try</c>, <c>catch</c>, <c>finally</c>, filter, and fault blocks. For information on the layout of this metadata, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics" and "Partition III: CIL Instruction Set". For more information, see <see href="https://www.ecma-international.org/publications-and-standards/standards/ecma-335/">ECMA 335 Common Language Infrastructure (CLI)</see>.
956
956
/// </remarks>
957
957
/// <exception cref="ArgumentNullException"><paramref name="exceptions" /> is <see langword="null" /> and <paramref name="exceptionsSize" /> is greater than 0.</exception>
958
958
/// <exception cref="ArgumentOutOfRangeException"><paramref name="exceptionsSize" /> is less than 0.</exception>
0 commit comments