follow proxy settings

This commit is contained in:
eric sciple
2020-01-26 01:37:54 -05:00
parent b7821147f5
commit cf5f899a30
627 changed files with 22615 additions and 104481 deletions

View File

@ -0,0 +1,14 @@
using System;
using Newtonsoft.Json;
namespace sample_csproj
{
class Program
{
static void Main(string[] args)
{
var json = JsonConvert.SerializeObject(new[] {"Hello", "World!" });
Console.WriteLine(json);
}
}
}