Created
October 17, 2020 06:59
-
-
Save MelbourneDeveloper/a81235684376775113bae598d25f8700 to your computer and use it in GitHub Desktop.
C# Use Discriminated Union
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
static void Main(string[] args) | |
{ | |
FSharpLibrary.Shape shape = FSharpLibrary.Shape.NewCircle(1); | |
Console.WriteLine($"Is this a rectangle: {shape.IsRectangle}"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment