a23568b4e5
And PR Feedback
16 lines
394 B
C#
16 lines
394 B
C#
using System;
|
|
|
|
namespace ConsoleApplication
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
#if NET451
|
|
Console.WriteLine($"Hello {string.Join(" ", args)} From .NETFramework,Version=v4.5.1");
|
|
#elif NETSTANDARD1_5
|
|
Console.WriteLine($"Hello {string.Join(" ", args)} From .NETStandardApp,Version=v1.5");
|
|
#endif
|
|
}
|
|
}
|
|
}
|