Project files for the Acumatica Import for United Rentals
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
-
- 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;
- }
-
- }
- }
|