dotnet-installer/TestAssets/TestProjects/TestSimpleIncrementalApp/Program2.cs

13 lines
202 B
C#
Raw Normal View History

using System;
namespace ConsoleApplication
{
public class Program2
{
public static void Foo(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}