I don't know much about F# but i am working on a project (on C#) in which i have to make few changes inside pre-written F# code.
I want to declare a object public and then use this object locally.(like we do in C#).
class abc
{
public SubscriptionManager subman = null; // object of class SubscriptionManager
public void DoSomething()
{
subman = new SubscriptionManager();
}
}
Something like this.
Can i do this same thing into the F#?