I want to store decimal value in string type variable
string value1=Decimal.Parse("23,56",System.Globalization.CultureInfo.InvariantCulture).ToString()-->it is giving 23,56 as result
but if i remove .ToString it is converting to 23.56,then not able to store in string type.
How to fix this weired issue.
Go to the complete details ...