Project files for the Acumatica Import for United Rentals
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
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. }