Tagged Questions
The culture tag has no wiki summary.
47
votes
16answers
3k views
Pirated software at a company? [closed]
I recently had a position at a small web development shop in the US where virtually all software used on a daily basis was cracked. My own IDE was paid for, and I used open source software personally ...
14
votes
18answers
989 views
A developers expectation with regards to Internet access
I work in what is effectively a large corporate - I say effectively since the company I work for is relatively small, but depends upon the network infrastructure of a larger parent company. Recently ...
13
votes
2answers
287 views
C#- ToLower() is sometimes removing dot from the letter “I”
We have noticed a weird error when calling ToLower() on certain strings.
The input string is:
string s = "DocumentInfo";
string t = s.ToLower();
// sometimes, t == documentinfo
// other times, t == ...
13
votes
18answers
858 views
No room for elegant code?
Attempt at objectivity: This is based mostly on my small amount of experience.
I go through phases where I become dismayed and perceive that, ultimately, nobody really cares about writing good code. ...
12
votes
4answers
4k views
MVC 3 jQuery Validation/globalizing of number/decimal field
When using globalization culture="da-DK" in the Web.config file, the jQuery validation does not work.
In Denmark, we use the notation 19,95 instead of the US way 19.95 when we write a price for at ...
12
votes
7answers
8k views
C#: What does MissingManifestResourceException mean and how to fix it?
The situation:
I have a class library, called RT.Servers, containing a few resources (of type byte[], but I don't think that's important)
The same class library contains a method which returns one ...
9
votes
1answer
628 views
TextBox doesn't honor System Decimal (Dot or Comma)
If I bind Text in a TextBox to a float Property then the displayed text doesn't honor the system decimal (dot or comma). Instead it always displays a dot ('.'). But if I display the value in a ...
9
votes
2answers
135 views
Is it possible to make a date datatype accept 13 as a month and 30 for all months?
I am in Ethiopia and we have 13 months. 12 of them with 30 days each and 13th month with 5 or 6 days. I want to sort my data by date using the BindingSource sort method. But to do that, I need to set ...
9
votes
2answers
932 views
Localized tables and Entity Framework
I have a scenario where I need to localized values of objects in my database.
Let's say you have an application that can create animals, if the user is english the value of the "Name" property of an ...
9
votes
6answers
4k views
Double.Parse - Internationalization problem
This is driving me crazy. I have the following string in a ASP.NET 2.0 WebForm Page
string s = "0.009";
Simple enough. Now, if my culture is Spanish - which is "es-ES" - and I try to convert the ...
8
votes
7answers
809 views
Get just the hour of day from DateTime using either 12 or 24 hour format as defined by the current culture
.Net has the built in ToShortTimeString() function for DateTime that uses the CultureInfo.CurrentCulture.DateTimeFormat.ShortTimePattern format. It returns something like this for en-US: "5:00 pm". ...
8
votes
3answers
3k views
How to getting browser current locale preference using javascript?
Does anyone know how to obtain the browser culture from firefox and google chrome using javascript? Note: This is an asp.net 3.5 web application.
The requirement is to try and set the applications ...
7
votes
3answers
416 views
C#: Unit Test to Differentiate CurrentCulture from InvariantCulture
I have a method which takes a StringComparison argument, and it really needs a unit test to prove it is performing the right comparison type.
This is basically what I have so far. It differentiates ...
7
votes
2answers
427 views
Java equivalent of Invariant Culture
I am converting the following C# code to Java. Is there a Java equivalent to the .NET concept of Invariant Culture?
string upper = myString.ToUpperInvariant();
Since the Invariant Culture is ...
7
votes
4answers
361 views
In .Net: best way for keeping CurrentCulture on new Thread?
In a .Net 4.0 WPF project, we need to keep the same CurrentCulture on each thread then we have on the main thread.
Given, we can initialize a new thread's culture with code like the following:
1) ...
7
votes
6answers
863 views
.NET: Are there any differences between InvariantCulture and en-US?
Given the following two cultures:
CultureInfo c1 = InvariantCulture;
CultureInfo c2 = new CultureInfo("en-US");
and i were to examine every piece of information specific to both cultures, e.g.:
...
7
votes
1answer
824 views
ASP.NET MVC output cache for multinenant application, vary by hostname and culture
I have a multitenant application in ASP.NET MVC. The instance of the application that will be served is function of the hostname alone (something along the lines of stackexchange, I suppose).
Each ...
7
votes
5answers
771 views
.NET How to compare two Strings that represent filenames ignoring case correctly
Given that (at least on NTFS) the filesystem on Windows is case insensitive, I would like to compare String fileA to String fileB as such:
fileA.Equals(fileB, ...
7
votes
2answers
302 views
Finding the end of a substring match in .NET
I am trying to find the index of a substring in a string that matches another string under a specific culture (provided from a System.CultureInfo).
For example the string "ass" matches the ...
6
votes
1answer
50 views
Are date strings in VB6 relative to machine culture?
I have a legacy VB6 application which contains this code:
Begin VB.Label LblStDate
Alignment = 1 'Right Justify
AutoSize = -1 'True
[Blah blah ...
6
votes
3answers
2k views
ASP.Net MVC3 Modify culture for date and decimal through or not Visual Studio?
I'm working on an MVC3 application with Razor. I'm having troubles using Dates and doubles on my views. Both my Windows and Visual Studio are English, but I want to customize the culture of my project ...
6
votes
3answers
250 views
c# : In a dotnet class is there a property that states if the “Current” culture is actual the default culture?
Is there a property in some class that can tell me if the current culture is actually the default culture.
Similar to how localization works with winforms. It states in a form if the language is ...
6
votes
1answer
278 views
Problem comparing French character Î
When comparing "Île" and "Ile", C# does not consider these to be to be the same.
string.Equals("Île", "Ile", StringComparison.InvariantCultureIgnoreCase)
For all other accented characters I ...
6
votes
1answer
193 views
case insenstive string replace that correctly works with ligatures like “ß” <=> “ss”
I have build a litte asp.net form that searches for something and displays the results. I want to highlight the search string within the search results. Example:
Query: "p"
Results: ...
6
votes
6answers
578 views
Best practices for a single large SVN project
I have inherited a single project in svn: 30Gb in over 300 000 files. There are tons of binary files in there mostly in an images folder. Operations like updating the entire project can be ...
6
votes
5answers
569 views
UI design and cultural sensitivity/awareness
When designing a user interface for an application that is going to be used internationally it is possible to accidentally design an aspect of the UI that is offensive to or inappropriate in another ...
6
votes
1answer
497 views
How to create a 13 month moon based Calendar in .net
hi i would like to create a custom calendar, this calendar will have custom month names and day names
it will contain
13 months with 28 days each
do i need to create and entire Culture or can i just ...
6
votes
4answers
5k views
Is CultureInfo.CurrentCulture really necessary in String.Format()?
How do you think is really necessary to provide IFormatProvider in method String.Format(string, object) ?
Is it better to write full variant
String.Format(CultureInfo.CurrentCulture, "String is ...
5
votes
2answers
524 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 ...
5
votes
2answers
395 views
If you have an application localized in pt-br and pt-pt, what language you should choose if the system is reporting only “pt” code?
If you have an application localized in pt-br and pt-pt, what language you should choose if the system is reporting only pt code (generic Portuguese)?
This question is independent of the nature of ...
5
votes
2answers
657 views
Parse DateTime in c# from strange format
if i have a datetime string in a weird format, such as YYYY##MM##DD HH**M**SS, how can i create a new datetime object base on that? i have read something about the datetimeformatinfoclass but not sure ...
5
votes
3answers
3k views
Is it possible to set the CultureInfo for an .NET application or just a thread?
I've an application written in C# which has no GUI or UI, but instead writes files that are parsed by another application (in XML and others).
I have a customer whose CultureInfo has the ...
5
votes
6answers
483 views
How are the chinese coding?
Do they code in Latin?
Do they have their own programming language?
I'm just curious.
5
votes
1answer
427 views
Is possible to obtain the CSV separator from Thread.CurrentThread.CurrentCulture? (.NET)
In languages where the decimal separator is a ,(comma) the CSV (comma separated values file format) separator is a ; (semicolon). I know where to find this configuration in the Windows Control Panel, ...
4
votes
2answers
92 views
Why is the culture name for English (Caribbean) “en-029”?
Why is the culture name for English (Caribbean) "en-029"?
I know "en-CA" is used for English (Canada), but why 029? What does it signify? Why was it chosen?
4
votes
2answers
176 views
.NET Task executed in one Thread
May I rely on the fact a Task is always executed in one thread? It can be any, but it should be the same for the whole body, as I need the thread's Culture to be set properly.
Task bind = ...
4
votes
2answers
221 views
A less ugly way to localize DayOfWeek?
using System;
namespace Server.Custom.Extensions
{
public static class FriendlyExtensions
{
public static string Friendly(this DayOfWeek day)
{
if (day == ...
4
votes
2answers
329 views
How do I render only some specific model-fields with an InvariantCulture, while the rest keeps using the users culture?
I have a couple of hidden inputs on an asp.net mvc view. Their values contain objects of type double. I want them to be rendered with the InvariantCulture as they are used to be fed to an api (google ...
4
votes
2answers
783 views
Loop through embedded resources of different languages/cultures in C#
One level up from this question, what would be the way to store all (and loop through) available resources and associated cultures, to allow user selection of a specific culture?
Further explanation:
...
4
votes
3answers
798 views
Parsing French Date
I am trying to parse a french date to a DateTime object with no luck so far. Is there a way? to do that.
String foo = "mar, 20 avr 2010 09:00:00 -0500";
I've Already tried parsing with a different ...
4
votes
4answers
318 views
What is a String Culture
Just trying to understand that - I have never used it before. How is a culture different to ToUpper() / ToLower()??
4
votes
4answers
963 views
String.FormatException with DateTime in non US Culture
I am getting a String.FormatException trying to convert/parse a string when the culture is other than non-US. The odd thing is that the string was generated by applying the very same format and ...
4
votes
1answer
2k views
JavaScript: Format number/currency w/regards to culture like .NET's String.Format()?
This seems like a problem someone would've already solved in the year 2009, but I can't find a decent JavaScript library that will take a number like:
12345.58
And format it correctly based on a ...
4
votes
4answers
9k views
Set Culture in an ASP.Net MVC app
What is the best place to set the Culture/UI Culture in an ASP.net MVC app
Currently I have a CultureController class which looks like this:
public class CultureController : Controller
{
...
4
votes
2answers
891 views
Is Culture in C# equivalent to Locale in Java?
C# uses the concept of Culture. Is this operationally similar to Locale in Java or are there significant differences in the underlying concepts?
4
votes
4answers
172 views
Your most persuasive arguments in favor of automating a process
How do you convince people (i.e. non-programmers) that automating a process is a GOOD thing?
The common argument against is something like "But you only have to do [X mindnumbing task]" and "it only ...
4
votes
11answers
848 views
Our boss wants to know what company rules we should have to improve the culture?
He want's to know our opinions on whether we should have flexitime, allow non-work related internet access etc.
We've got about 200 people in the company, half are programmers half are sales. We all ...
4
votes
5answers
9k views
How to change culture to a DateTimepicker or calendar control in .Net
how to set internationalization to a DateTimepicker or Calendar WinForm control in .Net when the desire culture is different to the one installed in the PC?
3
votes
1answer
298 views
MVC3 display date + short time without format string
In MVC you can do
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy h:mm tt}"]
This would translate to
10/12/2011 1:30 PM
Which is correct for a en-US user
But lets say a Swedish user visits ...
3
votes
4answers
168 views
String.Format and culture
When formatting a string as opposed to a DateTime, does the culture ever come into play? Are there any examples of strings that would be formatted differently with two different cultures?