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

17 行
323 B

  1. using Newtonsoft.Json;
  2. using System.IO;
  3. namespace uri_import
  4. {
  5. public class JSONActions
  6. {
  7. public static Common ReadSettings(string file)
  8. {
  9. string text = File.ReadAllText(file);
  10. Common c = JsonConvert.DeserializeObject<Common>(text);
  11. return c;
  12. }
  13. }
  14. }