I'm going tell to my WinForms application to use CultureInfo native numbers instead of system numbers (e.g. English version) to show numeric/digits. So is there any approach to do this?
Thread.CurrentThread.CurrentCulture = new CultureInfo("fa-IR");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fa-IR");
Thanks a lot ;)