Properties in C#
I have a couple of properties in C# which are double and I want to store these in a table in SQL Server, but noticed there is no double type, so what is best to use, decimal or float?
This will store latitude and longitude values, so I need the most accurate precision.
Thanks for the responses so far.