@@ -483,6 +483,7 @@ public partial struct Boolean : System.IComparable, System.IComparable<bool>, Sy
483483 uint System.IConvertible.ToUInt32(System.IFormatProvider provider) { throw null; }
484484 ulong System.IConvertible.ToUInt64(System.IFormatProvider provider) { throw null; }
485485 public override string ToString() { throw null; }
486+ public bool TryFormat(Span<char> destination, out int charsWritten) { throw null; }
486487 public static bool TryParse(string value, out bool result) { throw null; }
487488 public static bool TryParse(System.ReadOnlySpan<char> value, out bool result) { throw null; }
488489 }
@@ -532,6 +533,7 @@ public partial struct Byte : System.IComparable, System.IComparable<byte>, Syste
532533 public string ToString(System.IFormatProvider provider) { throw null; }
533534 public string ToString(string format) { throw null; }
534535 public string ToString(string format, System.IFormatProvider provider) { throw null; }
536+ public bool TryFormat(Span<char> destination, out int charsWritten, string format = null, System.IFormatProvider provider = null) { throw null; }
535537 public static bool TryParse(string s, out byte result) { throw null; }
536538 public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out byte result) { throw null; }
537539 public static bool TryParse(System.ReadOnlySpan<char> s, out byte result) { throw null; }
@@ -1448,6 +1450,7 @@ public partial struct Int16 : System.IComparable, System.IComparable<short>, Sys
14481450 public string ToString(System.IFormatProvider provider) { throw null; }
14491451 public string ToString(string format) { throw null; }
14501452 public string ToString(string format, System.IFormatProvider provider) { throw null; }
1453+ public bool TryFormat(Span<char> destination, out int charsWritten, string format = null, System.IFormatProvider provider = null) { throw null; }
14511454 public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out short result) { throw null; }
14521455 public static bool TryParse(string s, out short result) { throw null; }
14531456 public static bool TryParse(System.ReadOnlySpan<char> s, out short result) { throw null; }
@@ -1488,6 +1491,7 @@ public partial struct Int32 : System.IComparable, System.IComparable<int>, Syste
14881491 public string ToString(System.IFormatProvider provider) { throw null; }
14891492 public string ToString(string format) { throw null; }
14901493 public string ToString(string format, System.IFormatProvider provider) { throw null; }
1494+ public bool TryFormat(Span<char> destination, out int charsWritten, string format = null, System.IFormatProvider provider = null) { throw null; }
14911495 public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out int result) { throw null; }
14921496 public static bool TryParse(string s, out int result) { throw null; }
14931497 public static bool TryParse(System.ReadOnlySpan<char> s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out int result) { throw null; }
@@ -1528,6 +1532,7 @@ public partial struct Int64 : System.IComparable, System.IComparable<long>, Syst
15281532 public string ToString(System.IFormatProvider provider) { throw null; }
15291533 public string ToString(string format) { throw null; }
15301534 public string ToString(string format, System.IFormatProvider provider) { throw null; }
1535+ public bool TryFormat(Span<char> destination, out int charsWritten, string format = null, System.IFormatProvider provider = null) { throw null; }
15311536 public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out long result) { throw null; }
15321537 public static bool TryParse(string s, out long result) { throw null; }
15331538 public static bool TryParse(System.ReadOnlySpan<char> s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out long result) { throw null; }
@@ -2023,6 +2028,7 @@ public partial struct SByte : System.IComparable, System.IComparable<sbyte>, Sys
20232028 public string ToString(System.IFormatProvider provider) { throw null; }
20242029 public string ToString(string format) { throw null; }
20252030 public string ToString(string format, System.IFormatProvider provider) { throw null; }
2031+ public bool TryFormat(Span<char> destination, out int charsWritten, string format = null, System.IFormatProvider provider = null) { throw null; }
20262032 [System.CLSCompliantAttribute(false)]
20272033 public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out sbyte result) { throw null; }
20282034 [System.CLSCompliantAttribute(false)]
@@ -3053,6 +3059,7 @@ public partial struct UInt16 : System.IComparable, System.IComparable<ushort>, S
30533059 public string ToString(System.IFormatProvider provider) { throw null; }
30543060 public string ToString(string format) { throw null; }
30553061 public string ToString(string format, System.IFormatProvider provider) { throw null; }
3062+ public bool TryFormat(Span<char> destination, out int charsWritten, string format = null, System.IFormatProvider provider = null) { throw null; }
30563063 [System.CLSCompliantAttribute(false)]
30573064 public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out ushort result) { throw null; }
30583065 [System.CLSCompliantAttribute(false)]
@@ -3103,6 +3110,7 @@ public partial struct UInt32 : System.IComparable, System.IComparable<uint>, Sys
31033110 public string ToString(System.IFormatProvider provider) { throw null; }
31043111 public string ToString(string format) { throw null; }
31053112 public string ToString(string format, System.IFormatProvider provider) { throw null; }
3113+ public bool TryFormat(Span<char> destination, out int charsWritten, string format = null, System.IFormatProvider provider = null) { throw null; }
31063114 [System.CLSCompliantAttribute(false)]
31073115 public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out uint result) { throw null; }
31083116 [System.CLSCompliantAttribute(false)]
@@ -3153,6 +3161,7 @@ public partial struct UInt64 : System.IComparable, System.IComparable<ulong>, Sy
31533161 public string ToString(System.IFormatProvider provider) { throw null; }
31543162 public string ToString(string format) { throw null; }
31553163 public string ToString(string format, System.IFormatProvider provider) { throw null; }
3164+ public bool TryFormat(Span<char> destination, out int charsWritten, string format = null, System.IFormatProvider provider = null) { throw null; }
31563165 [System.CLSCompliantAttribute(false)]
31573166 public static bool TryParse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider, out ulong result) { throw null; }
31583167 [System.CLSCompliantAttribute(false)]
0 commit comments