mirror of
				https://github.com/actions/setup-dotnet.git
				synced 2025-11-04 13:13:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			290 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |