I have string value of "2.000,65" in German (de-DE) culture format. I want to convert this value into decimal and that too also in English (ed-US) format in c#, like "2,000.65".
Summary:-
I have a string value : "2.000,65"
Now wanted to convert this value into decimal en-US (US English) format as : 2,000.65 in c#
Hope, now its clear to understand question.
I have tried various option, but not able to achieve it.
Can you please help me out ?
Thanks.
Herin