You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
setup-dotnet/__tests__/sample-csproj/Program.cs

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