mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 15:33:03 +03:00
12 lines
183 B
C#
12 lines
183 B
C#
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace SharpCifs.Util.Sharpen
|
||
|
|
{
|
||
|
|
public class BufferedReader : StreamReader
|
||
|
|
{
|
||
|
|
public BufferedReader (InputStreamReader r) : base(r.BaseStream)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|