1 min

Wie spricht man den Lambda-Operator aus?

Da gibt es unterschiedliche Auffassungen. Im Englischen: Func f = x => x * 2; ”x goes to x * 2” ”x maps to x * 2” ”x becomes x * 2” ”x induces x * 2” Func te...

C#F#
2 min

F# and ArcObjects, Part 3

Today i played a little bit with IFeature-sequences and piping data. The result was a calculator of the bounding box around all features in a feature class....

ArcObjectsF#
1 min

F# and ArcObjects, Part 2

After accessing one feature now i iterate through all features of a feature class: open System;; #I "C:\Program Files\ArcGIS\DotNet" ;; #r "ESRI.ArcGIS.Syste...

ArcObjectsF#
1 min

F# and ArcObjects, Part 1

After having a first look on F# its time to ask: How could i use F# with ArcObjects. So my first steps was to do something with a feature in a F# interactive...

ArcObjectsF#
1 min

Integrating F# in SharpDevelop

After installing SharpDevelop 4 the F# Interactive could not be activated. In my case the correct folder for the F# installation must by specified in die app...

F#