@@ -2697,11 +2697,12 @@ public sealed class ConditionalAttribute : System.Attribute
2697
2697
public static class Debug
2698
2698
{
2699
2699
public static void Assert(bool condition) => throw null;
2700
- public static void Assert(bool condition, ref System.Diagnostics.Debug.AssertInterpolatedStringHandler message) => throw null;
2701
- public static void Assert(bool condition, ref System.Diagnostics.Debug.AssertInterpolatedStringHandler message, ref System.Diagnostics.Debug.AssertInterpolatedStringHandler detailMessage) => throw null;
2700
+ public static void Assert(bool condition, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("condition")] ref System.Diagnostics.Debug.AssertInterpolatedStringHandler message) => throw null;
2701
+ public static void Assert(bool condition, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("condition")] ref System.Diagnostics.Debug.AssertInterpolatedStringHandler message, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("condition")] ref System.Diagnostics.Debug.AssertInterpolatedStringHandler detailMessage) => throw null;
2702
2702
public static void Assert(bool condition, string message) => throw null;
2703
2703
public static void Assert(bool condition, string message, string detailMessage) => throw null;
2704
2704
public static void Assert(bool condition, string message, string detailMessageFormat, params object[] args) => throw null;
2705
+ [System.Runtime.CompilerServices.InterpolatedStringHandler]
2705
2706
public struct AssertInterpolatedStringHandler
2706
2707
{
2707
2708
public void AppendFormatted(object value, int alignment = default(int), string format = default(string)) => throw null;
@@ -2731,12 +2732,13 @@ public struct AssertInterpolatedStringHandler
2731
2732
public static void Write(object value, string category) => throw null;
2732
2733
public static void Write(string message) => throw null;
2733
2734
public static void Write(string message, string category) => throw null;
2734
- public static void WriteIf(bool condition, ref System.Diagnostics.Debug.WriteIfInterpolatedStringHandler message) => throw null;
2735
- public static void WriteIf(bool condition, ref System.Diagnostics.Debug.WriteIfInterpolatedStringHandler message, string category) => throw null;
2735
+ public static void WriteIf(bool condition, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("condition")] ref System.Diagnostics.Debug.WriteIfInterpolatedStringHandler message) => throw null;
2736
+ public static void WriteIf(bool condition, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("condition")] ref System.Diagnostics.Debug.WriteIfInterpolatedStringHandler message, string category) => throw null;
2736
2737
public static void WriteIf(bool condition, object value) => throw null;
2737
2738
public static void WriteIf(bool condition, object value, string category) => throw null;
2738
2739
public static void WriteIf(bool condition, string message) => throw null;
2739
2740
public static void WriteIf(bool condition, string message, string category) => throw null;
2741
+ [System.Runtime.CompilerServices.InterpolatedStringHandler]
2740
2742
public struct WriteIfInterpolatedStringHandler
2741
2743
{
2742
2744
public void AppendFormatted(object value, int alignment = default(int), string format = default(string)) => throw null;
@@ -2756,8 +2758,8 @@ public struct WriteIfInterpolatedStringHandler
2756
2758
public static void WriteLine(string message) => throw null;
2757
2759
public static void WriteLine(string format, params object[] args) => throw null;
2758
2760
public static void WriteLine(string message, string category) => throw null;
2759
- public static void WriteLineIf(bool condition, ref System.Diagnostics.Debug.WriteIfInterpolatedStringHandler message) => throw null;
2760
- public static void WriteLineIf(bool condition, ref System.Diagnostics.Debug.WriteIfInterpolatedStringHandler message, string category) => throw null;
2761
+ public static void WriteLineIf(bool condition, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("condition")] ref System.Diagnostics.Debug.WriteIfInterpolatedStringHandler message) => throw null;
2762
+ public static void WriteLineIf(bool condition, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("condition")] ref System.Diagnostics.Debug.WriteIfInterpolatedStringHandler message, string category) => throw null;
2761
2763
public static void WriteLineIf(bool condition, object value) => throw null;
2762
2764
public static void WriteLineIf(bool condition, object value, string category) => throw null;
2763
2765
public static void WriteLineIf(bool condition, string message) => throw null;
@@ -9036,6 +9038,7 @@ public sealed class DefaultDependencyAttribute : System.Attribute
9036
9038
public DefaultDependencyAttribute(System.Runtime.CompilerServices.LoadHint loadHintArgument) => throw null;
9037
9039
public System.Runtime.CompilerServices.LoadHint LoadHint { get => throw null; }
9038
9040
}
9041
+ [System.Runtime.CompilerServices.InterpolatedStringHandler]
9039
9042
public struct DefaultInterpolatedStringHandler
9040
9043
{
9041
9044
public void AppendFormatted(object value, int alignment = default(int), string format = default(string)) => throw null;
@@ -10876,8 +10879,8 @@ public sealed class String : System.ICloneable, System.IComparable, System.IComp
10876
10879
public static string Copy(string str) => throw null;
10877
10880
public void CopyTo(int sourceIndex, char[] destination, int destinationIndex, int count) => throw null;
10878
10881
public void CopyTo(System.Span<char> destination) => throw null;
10879
- public static string Create(System.IFormatProvider provider, ref System.Runtime.CompilerServices.DefaultInterpolatedStringHandler handler) => throw null;
10880
- public static string Create(System.IFormatProvider provider, System.Span<char> initialBuffer, ref System.Runtime.CompilerServices.DefaultInterpolatedStringHandler handler) => throw null;
10882
+ public static string Create(System.IFormatProvider provider, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("provider")] ref System.Runtime.CompilerServices.DefaultInterpolatedStringHandler handler) => throw null;
10883
+ public static string Create(System.IFormatProvider provider, System.Span<char> initialBuffer, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument(new[] { "provider", "initialBuffer" })] ref System.Runtime.CompilerServices.DefaultInterpolatedStringHandler handler) => throw null;
10881
10884
public static string Create<TState>(int length, TState state, System.Buffers.SpanAction<char, TState> action) => throw null;
10882
10885
public unsafe String(char* value) => throw null;
10883
10886
public unsafe String(char* value, int startIndex, int length) => throw null;
@@ -11419,7 +11422,7 @@ public sealed class StringBuilder : System.Runtime.Serialization.ISerializable
11419
11422
public System.Text.StringBuilder Append(char[] value, int startIndex, int charCount) => throw null;
11420
11423
public System.Text.StringBuilder Append(decimal value) => throw null;
11421
11424
public System.Text.StringBuilder Append(double value) => throw null;
11422
- public System.Text.StringBuilder Append(System.IFormatProvider provider, ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler) => throw null;
11425
+ public System.Text.StringBuilder Append(System.IFormatProvider provider, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument(new[] { "", "provider" })] ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler) => throw null;
11423
11426
public System.Text.StringBuilder Append(short value) => throw null;
11424
11427
public System.Text.StringBuilder Append(int value) => throw null;
11425
11428
public System.Text.StringBuilder Append(long value) => throw null;
@@ -11432,7 +11435,7 @@ public sealed class StringBuilder : System.Runtime.Serialization.ISerializable
11432
11435
public System.Text.StringBuilder Append(string value, int startIndex, int count) => throw null;
11433
11436
public System.Text.StringBuilder Append(System.Text.StringBuilder value) => throw null;
11434
11437
public System.Text.StringBuilder Append(System.Text.StringBuilder value, int startIndex, int count) => throw null;
11435
- public System.Text.StringBuilder Append(ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler) => throw null;
11438
+ public System.Text.StringBuilder Append([System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("")] ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler) => throw null;
11436
11439
public System.Text.StringBuilder Append(ushort value) => throw null;
11437
11440
public System.Text.StringBuilder Append(uint value) => throw null;
11438
11441
public System.Text.StringBuilder Append(ulong value) => throw null;
@@ -11444,6 +11447,7 @@ public sealed class StringBuilder : System.Runtime.Serialization.ISerializable
11444
11447
public System.Text.StringBuilder AppendFormat(string format, object arg0, object arg1) => throw null;
11445
11448
public System.Text.StringBuilder AppendFormat(string format, object arg0, object arg1, object arg2) => throw null;
11446
11449
public System.Text.StringBuilder AppendFormat(string format, params object[] args) => throw null;
11450
+ [System.Runtime.CompilerServices.InterpolatedStringHandler]
11447
11451
public struct AppendInterpolatedStringHandler
11448
11452
{
11449
11453
public void AppendFormatted(object value, int alignment = default(int), string format = default(string)) => throw null;
@@ -11466,9 +11470,9 @@ public struct AppendInterpolatedStringHandler
11466
11470
public System.Text.StringBuilder AppendJoin<T>(char separator, System.Collections.Generic.IEnumerable<T> values) => throw null;
11467
11471
public System.Text.StringBuilder AppendJoin<T>(string separator, System.Collections.Generic.IEnumerable<T> values) => throw null;
11468
11472
public System.Text.StringBuilder AppendLine() => throw null;
11469
- public System.Text.StringBuilder AppendLine(System.IFormatProvider provider, ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler) => throw null;
11473
+ public System.Text.StringBuilder AppendLine(System.IFormatProvider provider, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument(new[] { "", "provider" })] ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler) => throw null;
11470
11474
public System.Text.StringBuilder AppendLine(string value) => throw null;
11471
- public System.Text.StringBuilder AppendLine(ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler) => throw null;
11475
+ public System.Text.StringBuilder AppendLine([System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("")] ref System.Text.StringBuilder.AppendInterpolatedStringHandler handler) => throw null;
11472
11476
public int Capacity { get => throw null; set { } }
11473
11477
public struct ChunkEnumerator
11474
11478
{
0 commit comments