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.
|
-
- 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;
- }
-
- }
- }
|