You are probably using double.TryParse somewhere. Switch to this overload and pass in an Indonesian culture for the provider parameter using new CultureInfo("id-ID").
Example with double.Parse:
double result = double.Parse("6,5", new CultureInfo("id-ID"));