Google News
logo
F# - Interview Questions
What is Object in F#?
The Object is a real-world entity. It can be anything like - cell phone, car, football, etc.
 
The Object is an instance of the class we can access all the members of the class by using object of this class.
 
Let's see an example of how to create an object in F#.
 
let objectName = new ClassName()
Advertisement