PHPExcel_Reader_Serialized.cs 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ClassDiagrams
  5. {
  6. public class PHPExcel_Reader_Serialized : PHPExcel_Reader_IReader
  7. {
  8. #region IReader Members
  9. public PHPExcel reads
  10. {
  11. get
  12. {
  13. throw new Exception("The method or operation is not implemented.");
  14. }
  15. set
  16. {
  17. throw new Exception("The method or operation is not implemented.");
  18. }
  19. }
  20. #endregion
  21. }
  22. public class PHPExcel_Reader_CSV : PHPExcel_Reader_IReader
  23. {
  24. #region IReader Members
  25. public PHPExcel reads
  26. {
  27. get
  28. {
  29. throw new Exception("The method or operation is not implemented.");
  30. }
  31. set
  32. {
  33. throw new Exception("The method or operation is not implemented.");
  34. }
  35. }
  36. #endregion
  37. }
  38. }