Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
10answers
14k views

Best way to parse float?

What is the best way to parse a float in CSharp? I know about TryParse, but what I'm particularly wondering about is dots, commas etc. I'm having problems with my website. On my dev server, the ',' ...
10
votes
1answer
499 views

int.Parse of “8” fails. int.Parse always requires CultureInfo.InvariantCulture?

We develop an established software which works fine on all known computers except one. The problem is to parse strings that begin with "8". It seems like "8" in the beginning of a string is a reserved ...
7
votes
2answers
1k views

Use “real” CultureInfo.CurrentCulture in WPF Binding, not CultureInfo from IetfLanguageTag

In my case: I have a TextBlock Binding to a property of type DateTime. I want it to be displayed as the Regional settings of the User says. <TextBlock Text="{Binding Date, StringFormat={}{0:d}}" ...
5
votes
2answers
522 views

When should I specify CurrentCulture or InvariantCulture and when should I leave it unspecified?

What is the best practice for specifying CurrentCulture or InvariantCulture and not specifying the culture at all? From what I have read, if you're doing serialization, for instance, you need ...
3
votes
2answers
275 views

Wrong CurrentCulture when running an nUnit test in TeamCity

I have a unit-test that relies on a specific culture. In FixtureSetup, I set both Thread.CurrentThread.CurrentCulture and Thread.CurrentThread.CurrentUICulture to the desired value (en-US). When I ...
3
votes
4answers
195 views

Why is CurrentCulture a property of Thread?

It strikes me as an odd design choice that the current culture information (CurrentCulture and/or CurrentUICulture) is a a property of the running thread. At the very least it seems like the scope of ...
3
votes
2answers
333 views

Why doesn't the Timezone change when I set the CurrentCulture?

From what I have researched it is not possible to change the Timezone of a thread. So my question is why can't you? I would have thought switching your application's culture to a specific country ...
2
votes
1answer
171 views

How to dynamically initialize Culture in ASP.NET WebService Call?

Can anyone tell me how can i dynamically initialize thread culture in a asp.net webservice call? In my aspx pages i have a base page where i override the InitializeCulture() Method. Note that the ...
2
votes
1answer
238 views

C# Tasks, System.Threading.Thread.CurrentThread.CurrentCulture and Microsoft.Office.Interop.Excel

I execute code in Tasks in order to generate excel files. But cells format are still in en-US format. Do Tasks get the CurrentCulture parameter of the Current Thread ? Here some code : ...
2
votes
3answers
198 views

FxCop CA1305: CurrentCulture vs. CurrentUICulture

So, I have a few resource files for localization. They're strings that can be formatted. For example: MyResource.resx Title: "MyApp - Ver: {0}" I then return it by doing like so: public String ...
2
votes
5answers
300 views

ASP.Net MVC switching Cultures after compile for initial load

I have a hybrid ASP.Net web forms/MVC app. On one of the MVC "pages"/views, I have it render a bunch of dates using the ToShortDateString() and ToLongDateString(). These work correctly most of the ...
2
votes
1answer
303 views

How to honor/inherit user's language settings in WinForm app

I have worked with globalization settings in the past but not within the .NET environment, which is the topic of this question. What I am seeing is most certainly due to knowledge I have yet to learn ...
2
votes
1answer
707 views

Does changing the culture of a threadpool thread affect it when it gets returned back to the pool?

If I set the CurrentCulture of a thread pool thread, what happens when the thread finishes execution and gets returned back to the thread pool? Does it get its CurrentCulture reset back to the ...
2
votes
3answers
2k views

C# doubles show comma instead of period

I almost have the same problem as the guy in this thread: http://stackoverflow.com/questions/359298/convert-float-that-has-period-instead-of-comma So that my double x = 234.4; string y = ...
1
vote
1answer
103 views

Reading values with dataset messes up specific language characters dependending on client OS

I have made a windows application using C# that creates a dataset with data from a Dbase database file using a OleDBConnection. My problem is that this runs just fine on my own computer (swedish) but ...
1
vote
2answers
151 views

C# getCultures in local/currentCulture

The following code returns English names despite I localized the currentculture. List<string> languageList = new List<string>(); CultureInfo[] cultureList = ...
1
vote
1answer
328 views

Default string format in Silverlight

I've got a double, for example double d = 4.323d; And I want to display it in a TextBlock on a Silverlight 4 application, but the display should be this: 4.32 And I cannot change the StringFormat ...
1
vote
1answer
184 views

How to change the culture of a number in C#?

I'm sending parameters to paypal as hidden form vars. but my site's culture is Danish. So "50,00" is the value for "amount_1" <input type="hidden" name="amount_1" value="50,00" /> I'm using ...
1
vote
1answer
86 views

Get current computer datetimeformat

Hi I am new to web programming and I have an mvc app which runs on azure. There is a functionality where users can export grid data to csv and one of the fields is a datetime field. When the user ...
1
vote
1answer
246 views

How to set current CultureUI via XAML binding

I have a TextBlock bound to a string. I want the string to be displayed in current UI culture of the application. I want to do this in XAML. The text block is simple like below. <TextBlock ...
1
vote
2answers
176 views

Thread.CurrentCulture refers to client or server

simple question: Where does Thread.CurrentCulture gets it's data from? Client (browser) or server. And another question, is this the right way to find out the culture of the user? Thanks
1
vote
1answer
305 views

Can CultureInfo.CurrentCulture differ per application pool?

I'm having trouble with CultureInfo in our ASP.NET web application. Our web application returns a different culture, depending on which application pool it is in. In application pool A, it is en-US, ...
1
vote
2answers
674 views

Override CurrentCulture for WinForms control

Is it possible to override the CurrentCulture and the CurrentUICulture for a specific control in WinForms? So that this one specific control uses a different culture?
0
votes
0answers
13 views

CurrentCulture and CurrentUICulture don't apply format info

I need to apply custom CultureInfo to my application. My application is written on .NET 4.0 WPF and MVVM using Prism. I construct my custom CultureInfo that has DateTimeFormat.DateSeparator and ...
0
votes
0answers
32 views

Chaning regional settings returning wrong values - webservice

my system was in "US" culture. Now i have changed my culture to "Turkey". Please Look at the following code This is service file service1.svc.cs [ServiceBehavior] public class SPPChatService : ...
0
votes
1answer
130 views

MVC3 Razor globilization, double client side validation

I am having some problems with "," in the client validation, ie. I am trying to validate a double number like 124,51 in "en-EN" culture this would be 124.51 I have tried to set the culture in the ...
0
votes
0answers
148 views

MissingManifestResourceException Could not find any resources appropriate for the specified culture or the neutral culture

In my WPF application I have three .resx files: Resources.en-US.resx, Resources.resx, and Resources.nl-BE.resx. Each resource file is built as an embedded resource. In each wpf view, I`ve bound the ...
0
votes
1answer
67 views

Manually set Culture Info Year Time Pattern

I would like to ask if it is a good coding practice to manually set the YearMonthPattern of the CurrentCulture? My problem is I set the current culture to Invariant, and the YearMonthPattern changed. ...
0
votes
0answers
78 views

ThreadCulture for ThreadPool

I have an ASP.NET handler which receives AJAX requests from clients and process them. The processing requires calling an API which has only Async Methods. The API has been implemented using Thread ...
0
votes
1answer
237 views

resourcemanager uses wrong UICulture to serve content! Always returns neutral culture [closed]

Possible Duplicate: CurrentThread.CurrentUICulture is set correctly but seems to be ignored by asp.net I've asked on many forums, but no one seems to be able to help me! default.aspx: ...
0
votes
2answers
320 views

Cultureinfo: how to get only languagecode

I'm developing a Windows Phone app. How can I get the language code from CultureInfo.CurrentCulture? I'm using CultureInfo.CurrentCulture.Name and I getting 'en-US'. I only need en.
0
votes
2answers
1k views

CultureInfo.CurrentCulture is giving me the wrong culture

I'm trying to get my clients' country, so I use CultureInfo.CurrentCulture. Problem is that when my Canadian customers use my website, they're showing up as American. It looks like ...
0
votes
1answer
273 views

Windows service and default code page/culture setting?

I'm writing a service that will read a file from a directory, read the contents of the file and process the content. I am having issues with Swedish characters that are read from the file as they are ...
0
votes
3answers
2k views

ASP.NET Setting Culture with InitializeCulture

I have a website with three domains .com, .de and .it Each domain needs to default to the local language/culture of the country. I have created a base page and added an InitializeCulture ...
0
votes
1answer
76 views

How do I feed the language culture thread into the helper class

With asp.net MVC 2, I have been trying to get Matt Hawley's Localization helper to work in my web application, but I am getting stuck feeding a null into the Language string variable. I can't figure ...
0
votes
1answer
485 views

Set the Culture for an asp.net RangeValidator

An asp:RangeValidator takes it's culture info from the page/ thread and all advice online around getting the right culture seems to be to set the CultureInfo on the thread. Rick Strahl's west wind ...