F# – Classes

  • Post author:
  • Post category:F#
  • Post comments:1 Comment

F# Classes are types that represent objects that can have properties, methods, and events. ‘They are used to model actions, processes, and any conceptual entities in applications’. Syntax F# Classes…

Continue ReadingF# – Classes

F# – Delegates

  • Post author:
  • Post category:F#
  • Post comments:2 Comments

F# delegates is a reference type variable that holds the reference to a method. The reference can be changed at runtime. F# delegates are similar to pointers to functions, in…

Continue ReadingF# – Delegates