BeauData.CultureUtility.UseInvariantCulture C# (CSharp) Метод

UseInvariantCulture() статический публичный Метод

Temporary swaps the current thread over to the invariant CultureInfo. Dispose of the returned object to restore the thread to its previous CultureInfo.
static public UseInvariantCulture ( ) : CultureSwapScope
Результат CultureSwapScope
        static public CultureSwapScope UseInvariantCulture()
        {
            return new CultureSwapScope(CultureInfo.InvariantCulture);
        }