I have got a problem with types conversion in C# (VS2010).
I need to insert some rows in my database, but decimal number type in C# look like this: 1,34.
In sql string it looks : “——–1,34——— “, but I need that this string looks like: “——–1.34——-“.
How can I replace " , " to " . ".
Thanks.
If you want to just insert data to database put string with “.” (Replace(‘,’,’.’))