Schlagwort-Archive: visibility

How to use a F# library in a C# application

Within this article I want to show you the steps you have to do if you want to use a F# library in a C# application.   Step 1: Create the F# library At first you have to create a … Weiterlesen

Veröffentlicht unter .NET, F# | Verschlagwortet mit , , , , , | Kommentar hinterlassen

Lexical scope vs. dynamic scope

One of the basic concepts of all programming languages is scoping of variables. There existing two main concepts: lexical scope and dynamic scope.   Lexical scope The following example shows an F# function. The function foo uses the variable x … Weiterlesen

Veröffentlicht unter .NET, F# | Verschlagwortet mit , , , | Kommentar hinterlassen