Created
December 21, 2020 02:46
-
-
Save MelbourneDeveloper/259c7bcdd104db6362459d3bf2f5ff58 to your computer and use it in GitHub Desktop.
.NET 4.6.1 Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using DotNetStandardLibrary; | |
using System; | |
using System.Threading.Tasks; | |
namespace DotNet461ConsoleApp | |
{ | |
internal class Program | |
{ | |
private static async Task Main() | |
{ | |
var asyncDisposable = new AsyncDisposable(); | |
await asyncDisposable.DisposeAsync(); | |
_ = new ExampleClass("test").WriteSpans().DoSerialize(); | |
await ExampleClass.DoAsyncNumbersAsync(); | |
Console.WriteLine($"The character 7 {('7'.IsLetter() ? "is" : "is not")} a letter"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment