Skip to content

Commit

Permalink
Revert "Remove C# 10 feature codes."
Browse files Browse the repository at this point in the history
This reverts commit f7ae6d2.
  • Loading branch information
lindexi committed Dec 13, 2021
1 parent 11f1614 commit 6d0e26c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
11 changes: 5 additions & 6 deletions samples/dotnetCampus.LargeAddressAware.Sample/Program.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using System;

namespace dotnetCampus.LargeAddressAware.Sample
namespace dotnetCampus.LargeAddressAware.Sample;

internal class Program
{
internal class Program
static void Main(string[] args)
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
Console.WriteLine("Hello World!");
}
}
10 changes: 4 additions & 6 deletions src/dotnetCampus.LargeAddressAware/Program.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
namespace dotnetCampus.LargeAddressAware
namespace dotnetCampus.LargeAddressAware;

internal static class Program
{
internal static class Program
private static void Main()
{
private static void Main()
{

}
}
}
3 changes: 3 additions & 0 deletions src/dotnetCampus.LargeAddressAware/Properties/Global.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
global using System;
global using System.Collections.Generic;
global using System.Text;

0 comments on commit 6d0e26c

Please sign in to comment.