Normally you can get it by writing something like
CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;
But this way you can only get CultureInfo which was configured at the moment application was launched and will not update if the setting have been changed afterwards.
So, how to get CultureInfo currently configured in Control Panel -> Regional and Language Settings?