how to sum two gujrati value
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Divyaraj SisodiyaPosted Sep 3, 2015, 11:11 AM
Upendra Pratap ShahiPosted Sep 3, 2015, 6:58 AM
public static double ParseValue(string value) { return double.Parse(string.Join("", value.Select(c => "+-.".Contains(c) ? "" + c: "" + char.GetNumericValue(c)).ToArray()), NumberFormatInfo.InvariantInfo); }