FileWriter.cs 372 B

123456789101112131415161718
  1. using System.IO;
  2. namespace SharpCifs.Util.Sharpen
  3. {
  4. //resharper said, nobody using this. i believe it.
  5. //internal class FileWriter : StreamWriter
  6. //{
  7. // public FileWriter (FilePath path) : base(path.GetPath ())
  8. // {
  9. // }
  10. // public FileWriter Append (string sequence)
  11. // {
  12. // Write (sequence);
  13. // return this;
  14. // }
  15. //}
  16. }