Is there a shorter way of creating an IDictionary<_,obj>, possibly without boxing every value? This is what I have.
IDictionary<_,obj>
let values = [ \"a\"
Here's a solution, following kvb's suggestion (probably the most concise, and clearest, so far):
let inline (=>) a b = a, box b let values = [ "a" => 1 "b" => "foo" "c" => true ] |> dict