mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-08-21 08:00:22 +00:00
18 lines
381 B
C#
18 lines
381 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System.Text.Json;
|
|
using System;
|
|
|
|
namespace sample_csproj
|
|
{
|
|
[TestClass]
|
|
public class Program
|
|
{
|
|
[TestMethod]
|
|
public void TestMethod1()
|
|
{
|
|
var json = JsonSerializer.Serialize(new[] {"Hello", "World!" });
|
|
Console.WriteLine(json);
|
|
}
|
|
}
|
|
}
|