您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

32 行
534 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CI.WSANative.FileStorage
  4. {
  5. public static class WSANativeStorage
  6. {
  7. public static void SaveFile(string filename, string content)
  8. {
  9. }
  10. public static string LoadFile(string filename)
  11. {
  12. return string.Empty;
  13. }
  14. public static void DeleteFile(string filename)
  15. {
  16. }
  17. public static bool DoesFileExist(string filename)
  18. {
  19. return false;
  20. }
  21. public static List<string> GetAllFiles()
  22. {
  23. return new List<string>();
  24. }
  25. }
  26. }