Skip to content

Instantly share code, notes, and snippets.

@jaredpar
Created May 5, 2013 18:49
Show Gist options
  • Save jaredpar/5521756 to your computer and use it in GitHub Desktop.
Save jaredpar/5521756 to your computer and use it in GitHub Desktop.
When C# makes you wish you were using F#
C#
private static readonly ReadOnlyCollection<ITagSpan<IntraTextAdornmentTag>> EmptyTagColllection = new ReadOnlyCollection<ITagSpan<IntraTextAdornmentTag>>(new List<ITagSpan<IntraTextAdornmentTag>>());
F#
let emptyTagCollection = List.empty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment