@@ -15,7 +15,7 @@ public ref partial struct ValueStringBuilder
1515 /// The current version does not allow for a custom format.
1616 /// So: <code>AppendFormat("{0:00}")</code> is not allowed and will result in an exception.
1717 /// </remarks>
18- [ MethodImpl ( MethodImplOptions . AggressiveOptimization ) ]
18+ [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
1919 public void AppendFormat < T > (
2020 [ StringSyntax ( StringSyntaxAttribute . CompositeFormat ) ] ReadOnlySpan < char > format ,
2121 T arg )
@@ -71,7 +71,7 @@ public void AppendFormat<T>(
7171 /// The current version does not allow for a custom format.
7272 /// So: <code>AppendFormat("{0:00}")</code> is not allowed and will result in an exception.
7373 /// </remarks>
74- [ MethodImpl ( MethodImplOptions . AggressiveOptimization ) ]
74+ [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
7575 public void AppendFormat < T1 , T2 > (
7676 [ StringSyntax ( StringSyntaxAttribute . CompositeFormat ) ] ReadOnlySpan < char > format ,
7777 T1 arg1 ,
@@ -139,7 +139,7 @@ public void AppendFormat<T1, T2>(
139139 /// The current version does not allow for a custom format.
140140 /// So: <code>AppendFormat("{0:00}")</code> is not allowed and will result in an exception.
141141 /// </remarks>
142- [ MethodImpl ( MethodImplOptions . AggressiveOptimization ) ]
142+ [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
143143 public void AppendFormat < T1 , T2 , T3 > (
144144 [ StringSyntax ( StringSyntaxAttribute . CompositeFormat ) ] ReadOnlySpan < char > format ,
145145 T1 arg1 ,
@@ -213,7 +213,7 @@ public void AppendFormat<T1, T2, T3>(
213213 /// The current version does not allow for a custom format.
214214 /// So: <code>AppendFormat("{0:00}")</code> is not allowed and will result in an exception.
215215 /// </remarks>
216- [ MethodImpl ( MethodImplOptions . AggressiveOptimization ) ]
216+ [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
217217 public void AppendFormat < T1 , T2 , T3 , T4 > (
218218 [ StringSyntax ( StringSyntaxAttribute . CompositeFormat ) ] ReadOnlySpan < char > format ,
219219 T1 arg1 ,
@@ -293,7 +293,7 @@ public void AppendFormat<T1, T2, T3, T4>(
293293 /// The current version does not allow for a custom format.
294294 /// So: <code>AppendFormat("{0:00}")</code> is not allowed and will result in an exception.
295295 /// </remarks>
296- [ MethodImpl ( MethodImplOptions . AggressiveOptimization ) ]
296+ [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
297297 public void AppendFormat < T1 , T2 , T3 , T4 , T5 > (
298298 [ StringSyntax ( StringSyntaxAttribute . CompositeFormat ) ] ReadOnlySpan < char > format ,
299299 T1 arg1 ,
0 commit comments