If fare- any of the int, long, decimal, floator double, then I get the expected conclusion:
₹ 12,34,567.00.
, fare string; string.Format: : . : ( , , , ), ; :
string fare = "1234567";
decimal parsed = decimal.Parse(fare, CultureInfo.InvariantCulture);
CultureInfo hindi = new CultureInfo("hi-IN");
string text = string.Format(hindi, "{0:c}", parsed);
; :
string text = string.Format(hindi, "{0:#,#}", value);