Take the following example,
I have a class
public class SomeItem
{
public string Name;
public DateTime Published;
public uint16 Size;
}
I have a List<SomeItem> and I want to calculate the total size of all the items.
In C# I'd simply write
var totalSize = items.Sum((i) => i.Size);
I have taken a look at the List functions in F# but they always complain about the types.
How would you write this in F#?
(I have tried the search engines, but search engine support for F# is terrible)
