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