.Net_Test/C#/C#Basic/Program.cs

16 lines
278 B
C#
Raw Permalink Normal View History

2023-08-31 19:26:24 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Course
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Test");
}
}
}