mapbox / vector-tile-cs

Parses vector tiles with C#.
BSD 3-Clause "New" or "Revised" License
57 stars 37 forks source link

Implement properties via generics (avoid boxing/unboxing) #23

Open wilhelmberg opened 7 years ago

wilhelmberg commented 7 years ago

As property values can have different types they are currently implemented as Dictionary<string, object>.

Find an implementation to avoid boxing/unboxing.