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
/// A StringBuilder that allows one to access the array.
30
32
/// </summary>
31
-
publicclassOpenStringBuilder:IAppendable,ISpanAppendable,ICharSequence// LUCENENET specific - implemented ISpanAppendable to support ReadOnlySpan<char>
33
+
/// <remarks>
34
+
/// LUCENENET specific: This type implements <see cref="IBufferWriter{T}"/> to allow for efficient access to the underlying buffer.
35
+
/// Note that if you hold a view into the buffer via either <see cref="GetMemory(int)"/> or <see cref="GetSpan(int)"/>,
36
+
/// this view can be invalidated by any operation that changes the position or length of the buffer.
37
+
/// It is recommended to avoid any non-<see cref="IBufferWriter{T}"/> operations while holding a view into the buffer.
38
+
/// <para />
39
+
/// This type also implements <see cref="ISpanAppendable"/> to allow for efficient appending of <see cref="ReadOnlySpan{T}"/>.
0 commit comments