474,047 Members | 2,956 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

currentCulture. NumberFormat.Nu mberDecimalSepa rator

Is there an error in the
currentCulture. NumberFormat.Nu mberDecimalSepa rator?

Take a look at this code:
Thread.CurrentT hread.CurrentCu lture = new CultureInfo("nb-NO");
Assert.IsTrue(S tringClassifier .IsDouble("123" +
currentCulture. NumberFormat.Nu mberDecimalSepa rator + "022"));

The norwegian NumberDecimalSe perator is a comma (,) not a period (.)
but when running this code the value is 123.022 (with a period).

Is this a bug in the currentCulture. NumberFormat.Nu mberDecimalSepa rator
or am I doing something wrong?

awiklund

Aug 16 '06 #1
2 8364
BTW...

This is in .Net 2.0

awiklund

ar**********@in tellifield.no skrev:
Is there an error in the
currentCulture. NumberFormat.Nu mberDecimalSepa rator?

Take a look at this code:
Thread.CurrentT hread.CurrentCu lture = new CultureInfo("nb-NO");
Assert.IsTrue(S tringClassifier .IsDouble("123" +
currentCulture. NumberFormat.Nu mberDecimalSepa rator + "022"));

The norwegian NumberDecimalSe perator is a comma (,) not a period (.)
but when running this code the value is 123.022 (with a period).

Is this a bug in the currentCulture. NumberFormat.Nu mberDecimalSepa rator
or am I doing something wrong?

awiklund
Aug 16 '06 #2
Where does the currentCulture variable come from (the one you're getting the
separator from)?
Looks to me like you're not actually using the culture you just created

/claes

<ar**********@i ntellifield.now rote in message
news:11******** **************@ 74g2000cwt.goog legroups.com...
Is there an error in the
currentCulture. NumberFormat.Nu mberDecimalSepa rator?

Take a look at this code:
Thread.CurrentT hread.CurrentCu lture = new CultureInfo("nb-NO");
Assert.IsTrue(S tringClassifier .IsDouble("123" +
currentCulture. NumberFormat.Nu mberDecimalSepa rator + "022"));

The norwegian NumberDecimalSe perator is a comma (,) not a period (.)
but when running this code the value is 123.022 (with a period).

Is this a bug in the currentCulture. NumberFormat.Nu mberDecimalSepa rator
or am I doing something wrong?

awiklund

Aug 16 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
343
by: Vyacheslav Lanovets | last post by:
Hello, All! Is it possible to change parameters of locale for writing XML file (with XMLTextWriter)? I want to change NumberDecimalSeparator from "," to "." Regards, Vyacheslav
1
14420
by: stf | last post by:
Hello, I use c# to start excel and to get numberformat of active cell. VBA outputs results as expected, but via c# i get result 'Standard' instead of 'General' for a call to numberformat. Why? It look's like 'numberformatlocal' is returned instead of 'numberformat'. Output of C#: Numberformat:Standard NumberformatLocal:Standard
1
3177
by: Marco | last post by:
Hi all, in my system NumberDecimalSeparator is set to ',' so why doing: double toDo = double.Parse(dr.ToString())); toDo is something like 123.0 ?!?!?! Thanks in advance :-)
2
3872
by: kiran | last post by:
Hi, I am able to create instance of Culture Info for different cultures. How will I get number format as "$ ###,###,##0.00" from CultureInfo.NumberFormat. I need it in this format so that I can set format for a ultrawebgrid column.(for eg. Me.uwgTest.Columns(15).Format=CultureInfo.NumberFormat)
5
17446
by: Tsair | last post by:
I set the thread culture in MAIN() as below in order to show the date in format DAY/MONTH/YEAR, but the datagridview alway show the date in M/d/yyyy. How to set the default Date format from windows xp control panel by C# coding or is that any way to set the application date format to d/M/yyyy without change the windows xp regional setting ? Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US", false );
1
2635
by: schaf | last post by:
Hi NG! I have a .NET project which uses a sublibrary written in C++. On the .NET side I use the XMLSerializer to serialize an object (into an MemoryStream). This stream would be casted into a byte-array and then passed to the C++ sublibrary. The sublibrary ha sthe intention to convert the XML into and other XML based format. Unfortunately the values in the final file are wrong in the following case.
2
3950
by: LushaM | last post by:
Hi, all! I have a question about CurrentCulture ( System.Globalization.CultureInfo.CurrentCulture ). As I understand, by default, System.Globalization.CultureInfo.CurrentCulture has the same settings (currency, date, spearators,..) as these that we can see and edit from Control Panel -Regional and Language Options. It is true, when I use CurrentCulture in Console application in .Net 1.1.
4
3633
by: Rainer Queck | last post by:
Hi NG, in my application a <myDataTable>.Select fails with "Syntax error in the expression." It took me a while, isolate the cause to this: To select some datarows from a data table I am using a select sting like "selectStr = String.Format("x >= {0}", aDoubleVar)". The Thread.CurrentThread.CurrenCulture is set to "en-US" where the Thread.CurrentThread.CurrentCulture.NumberFormat.CurrencyDecimalSeparator is
4
4506
by: MaTe | last post by:
hi, I have tried to automate excel (2007) in vb.net and i have problem with function NumberFormat. I want set the thousand separator for range: Range("C1:C6").NumberFormat = "0,0.00" and it pops up an error msg like: can't set property NumberFormat for Range Does anyone know the solution??
0
10350
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
12151
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
11145
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
10317
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8704
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
7876
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6662
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
5423
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
4947
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.