Project files for the Acumatica Import for United Rentals
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
-
- using Newtonsoft.Json;
- using System.IO;
-
- namespace uri_import
- {
- public class JSONActions
- {
- public static Common ReadSettings(string file)
- {
- string text = File.ReadAllText(file);
- Common c = JsonConvert.DeserializeObject<Common>(text);
- return c;
- }
-
- }
- }
|