F# – Define empty class, struct or interface types

In C#, you define an empty class, struct, or interface like this:

image

So how do you define an empty type in F#?

Well, whenever you define a new class in F#, the compiler infers the class and end tokens at the beginning and end of the class’s definition, as you can see from below:

image

So the easiest way to define an empty type is to specify the class and end tokens explicitly:

image

Running these few lines of code into the F# interactive outputs the following:

image

For class types, you also have other alternative techniques, such as:

image

 

Learn to build Production-Ready Serverless applications

Want to learn how to build Serverless applications and follow best practices? Subscribe to my newsletter and join over 5,000 AWS & Serverless enthusiasts who have signed up already.

Leave a Comment

Your email address will not be published. Required fields are marked *