I want to Set Culture for Windows Service that I developed. Can someone recommend me a good read for or how to go about it.
So far I have I Tried to do the Following OnStart()
Dim oCultureInfo as CultureInfo = New CultureInfo("tr-TR")
System.Threading.Thread.CurrentThread.Culture = oCultureInfo
System.Threading.Thread.CurrentThread.UICulture = oCultureInfo
After doing so I still see that My culture is US English.