mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-09 19:33:36 -04:00
20 lines
400 B
C#
20 lines
400 B
C#
namespace SharpCifs.Util.Sharpen
|
|
{
|
|
internal class CharBuffer : CharSequence
|
|
{
|
|
internal string Wrapped;
|
|
|
|
public override string ToString()
|
|
{
|
|
return Wrapped;
|
|
}
|
|
|
|
public static CharBuffer Wrap(string str)
|
|
{
|
|
CharBuffer buffer = new CharBuffer();
|
|
buffer.Wrapped = str;
|
|
return buffer;
|
|
}
|
|
}
|
|
}
|