Patreos98 a6fda504d5 Revert "Merge branch 'main' into dependabot/npm_and_yarn/node-fetch-2.6.1"
This reverts commit b8c9c25ab1d423e5c3aefb3903399a6c1b64bae3, reversing
changes made to 19ffec8f3e520e1f08af6a7583b84852f6e6f0fe.
2020-09-20 18:11:25 +02:00

15 lines
290 B
C#

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