Skip to content

Instantly share code, notes, and snippets.

@MelbourneDeveloper
Created October 17, 2020 06:59
Show Gist options
  • Save MelbourneDeveloper/a81235684376775113bae598d25f8700 to your computer and use it in GitHub Desktop.
Save MelbourneDeveloper/a81235684376775113bae598d25f8700 to your computer and use it in GitHub Desktop.
C# Use Discriminated Union
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