Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update obsolete message on InplaceStringBuilder
  • Loading branch information
ericstj committed Jun 8, 2023
commit bb9c4c7f169abe1305471fc3b3a3575fbb06498f
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public partial interface IChangeToken
bool HasChanged { get; }
System.IDisposable RegisterChangeCallback(System.Action<object?> callback, object? state);
}
[System.ObsoleteAttribute("This type is obsolete and will be removed in a future version.")]
[System.ObsoleteAttribute("This method is retained only for compatibility. The recommended alternative is string.Create<TState> (int length, TState state, System.Buffers.SpanAction<char,TState> action).")]
public partial struct InplaceStringBuilder
{
private object _dummy;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Microsoft.Extensions.Primitives
{
[DebuggerDisplay("Value = {_value}")]
[Obsolete("This type is obsolete and will be removed in a future version.")]
[Obsolete("This method is retained only for compatibility. The recommended alternative is string.Create<TState> (int length, TState state, System.Buffers.SpanAction<char,TState> action).")]
public struct InplaceStringBuilder
{
private int _offset;
Expand Down