Thread.CurrentThread : Thread « System.Threading « C# / C Sharp by API
- C# / C Sharp by API
- System.Threading
- Thread
Thread.CurrentThread
using System;
using System.Globalization;
using System.Threading;
class MainClass
{
public static void Main()
{
Thread.CurrentThread.CurrentCulture=new CultureInfo("de-DE");
}
}
Related examples in the same category