14 lines
256 B
C#
14 lines
256 B
C#
namespace SharpCifs.Util.Sharpen
|
|
{
|
|
public class FileReader : InputStreamReader
|
|
{
|
|
//public FileReader (FilePath f) : base(f.GetPath ())
|
|
//{
|
|
//}
|
|
//path -> fileStream
|
|
public FileReader(InputStream s) : base(s)
|
|
{
|
|
}
|
|
}
|
|
}
|