Tagged Questions
0
votes
1answer
28 views
Wrong time when I convert UTC time to “E. South America Standard Time”
I created this method to convert a DateTime from UTC to another timezone
public static DateTime GetDateTimeFromUtcTo(string timeZoneName, DateTime time)
{
DateTime newDateTime = ...
0
votes
1answer
56 views
TimeZoneInfo.ConvertTimeFromUtc does not consider DST
We use TimeZoneInfo.ConvertTimeFromUtc to convert UTC times to local time equivalents. When converting to time zone "Central America Standard Time" the result seems to not consider daylight saving ...
1
vote
1answer
43 views
How to represent EOT in local time?
I have some NodaTime code that is looking at zone intervals:
var zone = DateTimeZoneProviders.Tzdb["America/Phoenix"];
var interval = zone.GetZoneInterval(SystemClock.Instance.Now);
...
-3
votes
2answers
32 views
getting the local time [closed]
int tzO = TimeZone.CurrentTimeZone.IsDaylightSavingTime(DateTime.Now) ? -4 : -5;
(It is a single line of code. Some browsers wrap it to two lines.) Why does this code suck?
4
votes
1answer
39 views
How to check if current timezone is (UTC+9:00) Osaka, Sapporo, Tokyo on other languages?
I was able to compare it by:
if (TimeZoneInfo.Local.ToString().Contains("Tokyo"))
{
//do something ...
}
but the problem is if i use a Japanese native OS for example, the return string uses ...
-2
votes
1answer
144 views
How to set Timezone per thread? [closed]
I know we could change the current culture for the current thread.
And I know we couldn't get TimeZoneInfo from the CurrentCulture because one culture may has many TimeZones like USA
But to use use ...
7
votes
2answers
176 views
Why doesn't .NET convert the time correctly?
In the year 2013, the United Kingdom won't start daylight savings time until March 31st.
Still, TimeZoneInfo.ConvertTimeToUtc subtracts one hour when I try to convert a given time to UTC time.
Why ...
11
votes
1answer
275 views
Azure now returns invalid value of “Coordinated Universal Time” for TimeZoneInfo.Local.Id instead of “UTC”? Why?
It appears starting March 7 that Azure servers in the Southeast Asia region had a patch applied which changed the behavior of TimeZoneInfo in .NET.
Setting my local machine to "(UTC) Coordinated ...
2
votes
3answers
235 views
Timezone Abbreviations
I know I'm not the first one who has this problem, not the last one, but I honestly can't find a solution to deal with that.
Yes, I get it - TimezoneInfo does not provide abbreviation or a short ...
2
votes
2answers
190 views
How do I convert UTC to PST or PDT depending upon what the current time is in California?
I cannot use DateTime.Now because the server is not necessarily located in Calfornia
1
vote
0answers
63 views
Convert city-based time zone in .Net
Such city-based time zones (or whatever you call this) as Asia/Shanghai, America/Los_Angeles are widely used in php and java, for example,
java.util.TimeZone.TimeZone timeZoneNewYork = ...
2
votes
3answers
1k views
JSON Date Serialization and Time Zones
I'm having issues displaying the correct date on the client's browser using a JSON serialized object. The user is able to define what time zone they want to view data as. Given this, I convert the ...
2
votes
2answers
1k views
What value should I pass into TimeZoneInfo.FindSystemTimeZoneById(String)?
I want to use the TimeZoneInfo.FindSystemTimeZoneById(String) method, but I don't know what values to use as the input?
Where can I get a list of values for id required for FindSystemTimeZoneById?
1
vote
1answer
67 views
Using 'World Time Engine' Service from ASP.NET MVC
I am working with ASP.NET MVC. I need local time depending on user IP address. For that I am using a 'World Time Engine' service. This service need the IP address as input and send response with a XML ...
1
vote
3answers
83 views
TimeZoneInfo - Per user or systemwide?
I'm trying to figure out if the System.TimeZoneInfo is a local user or system wide setting? I've been modifying my local timezone as the user i'm logged in as, but a service running in the background ...
-1
votes
2answers
93 views
How to assign a timezone to a DateTime?
I am getting a date/time value in the form of a string which I am casting to a DateTime object.
eg. 2012-11-10 11:37:06
I know that this time is from a different timezone to the local time of my ...
3
votes
2answers
323 views
Timezone conversion and daylight saving
We have a scheduler application. Using this application an user can schedule a task to run at 8 AM PT daily for the next 30 days. We convert the time to UTC and store it in the databse as we have ...
2
votes
2answers
306 views
Use TimeZoneInfo class to account for time change in daylight savings time
I have some outdated code that attempts to account for the change in time caused by daylight savings that looks like this:
using System;
using System.Collections.Generic;
using System.Linq;
using ...
1
vote
0answers
212 views
Best way to handle date times with respect to time zones in .Net
I have been messing around with time zones lately in a time zone aware web application in .net. I have come up with the following solution for handling time zones.
My Solution is:
Have the user ...
6
votes
1answer
96 views
Why would the same DateTime value yield different displayed time for different users?
In my ASP.NET application I use code from here to find the build date of the application as UTC. The UTC value read from the assembly file is then formatted as follows:
//DateTime time
return ...
0
votes
3answers
80 views
Do the same TimeZoneInfos exist on all .NET installations?
The following C# code
TimeZoneInfo.FindSystemTimeZoneById("foo")
will throw a TimeZoneNotFoundException (as you might expect), whereas
TimeZoneInfo.FindSystemTimeZoneById("Central European ...
0
votes
2answers
103 views
DateTime and UniversalTime
I am confused with the DateTime component of .net. The server is running in UTC +4 and my clients are in different timezones. So the time on the server is in UTC+4 mode. I've already tried to cast it ...
1
vote
1answer
295 views
Wrong daylight saving date when using TimeZoneInfo.ConvertTime? [closed]
On November 6th, 2011, at 2 AM (EST, e.g. in New York), it was 3 AM according to the daylight saving time schedule.
Does someone know why the TimeZoneInfo.ConvertTime function from the .NET framework ...
1
vote
2answers
414 views
.NET DateTime & TimezoneInfo.ConvertTime party
The thing I want to do is quite simple:
private static TimeZoneInfo Tzi = // ... custom timeZone I've set;
public static DateTime ToTimeZone(DateTime dateTime, TimeZoneInfo target)
{
...
3
votes
1answer
202 views
Storing a users Time Zone preference
My requirement here is fairly standard; I need to allow users to select their current TimeZone and save it against their account. I will then use this value to to convert stored DateTime values to a ...
0
votes
0answers
160 views
Graphical time zone picker control for .NET winForms
I am looking for a Graphical time zone picker control for .NET WinForms. I would like for the client to actually select their time zone from a map that highlights the time zone. Similar to OS X Lion's ...
0
votes
1answer
204 views
Dispay IST Time reading ToUniversalTime() from database
I am storing the user submitted post by converting to ToUniversalTime() in database MYSQL using C# language.
BLLContext bll=new BLLContext();
bll.DatePosted = DateTime.Now.ToUniversalTime();
...
4
votes
2answers
815 views
Format String to Datetime with Timezone
I have a string s = "May 16, 2010 7:20:12 AM CDT that i want to convert into a DateTime object. In the code below i get a Date format cannot be converted error when attempting to parse the text with a ...
0
votes
0answers
50 views
Ignore DayLightSaving in .net setting some config
I have an application C# .net consuming a service with DateTime.
This servie returns the DateTimes values with timezone information (-01:00 for example).
I already read solutions like timezoneoffset ...
2
votes
1answer
251 views
Best practices for storing user time zone - TSQL/.Net
I have a need to track user's time zone so processing of their information (or no processing) can happen at specific times they specify (in their own time zone).
The obvious answer is to store the ...
1
vote
1answer
81 views
Standard Time Zone Names/IDs
Are there standardized time zone names that are recognized by different operating systems and/or platforms? For example, it doesn't look like the strings returned by [NSTimeZone knownTimeZones] in ...
3
votes
2answers
522 views
“US Eastern Standard Time” vs “Eastern Standard Time” in .NET
In listing all the Id properties of the TimeZoneInfos returned by TimeZoneInfo.GetSystemTimeZones, two versions of EST appear: US Eastern Standard Time and Eastern Standard Time. What's the ...
11
votes
1answer
912 views
.NET LINQ to entities group by date (day)
I have the same problem posted here:
LINQ to Entities group-by failure using .date
However, the answer is not 100% correct. It works in all cases except when different timezones are used. When ...
8
votes
1answer
370 views
how many time zones are there?
I'm not sure whether this is an SO question but still would like to know the answer.
Wikipedia says there are about 40 time zones, but when I invoke the TimeZoneInfo.GetSystemTimeZones() method in c# ...
7
votes
3answers
857 views
Is there any reason not to use DateTimeOffset instead of DateTime?
Currently we are facing issues when showing data that was collected in different timezones. DateTime can interpret the datetime correctly if an offset is present, but the offset information is lost ...
2
votes
3answers
437 views
TimeZoneInfo on MonoTouch and .NET do not match
When using TimeZoneInfo.Local.Id on MonoTouch, I get CET (for Central European Time). On ASP.NET, I get Central Europe Standard Time.
I need to transfer the time zone from the iOS device (MonoTouch) ...
11
votes
2answers
873 views
C# british summer time (BST) timezone abbreviation
I need to display a label with the current time zone abbreviation. My pc's timezone is currently set to "(GMT) Greenwich Mean Time : Dublin, Edinburgh, Lisbon, London". As a result, I would like to ...
3
votes
1answer
325 views
How do I get the correct modified datetime of a FAT32 file, regardless of timezone in .NET?
Please read this question fully and carefully before answering. The answer is not as simple as it might appear.
I am writing a program that needs to keep track of the modified datetime of files, some ...
0
votes
1answer
209 views
Convert PST to GMT Irrespective of Server Timezone with .Net DateTime
Given a date and time structured as:
"2011-10-21 14:44:19"
which is known to be Pacific Time (adjusted for Daylight Savings when appropriate), I need to parse the DateTime and convert it to UTC, ...
0
votes
1answer
262 views
ASP.NET MVC3 Best way to customize converting input parameters
I'm going to add support of different timezone in my ASP.NET MVC3 app.
The solution is to store date values in UTC time, and store user timezone offset.
So, I need 2 things:
Send date values to ...
2
votes
2answers
457 views
Converting time between Timezones
I'm using TimeZoneInfo.ConvertTime method to convert time from one to another.
While converting the Date Time 1/1/2006 2.00 AM from Perth to Sri Jeyawardenepura its converted to 1/31/2005 11.30pm
...
2
votes
3answers
672 views
Detect if the DST is currently enabled
I need to find an easy way to know if the local machine's 'automatically adjust clock for Daylight Saving Time' option is enabled.
If the option's on, I need to know whether it is currently applied ...
8
votes
3answers
644 views
GetSystemTimeZones missing GMT Standard Time
I have been trying to use TimeZoneInfo.GetSystemTimeZones in .net4 to replace our old method which uses COM to call into some MFC code. However, I've had to revert to the COM method because ...
0
votes
1answer
76 views
.net - linux timezone interoperability
I have a windows server and bunch of linux clients connected to this server. Linux clients will be connecting to the server and will be sending some messages which include some datetime information. ...
0
votes
1answer
886 views
DateTimeOffset proper usage
If I have a DateTime instance which represents a valid UTC time, and an offset that converts that DateTime to the time zone where it applies, how do I construct a DateTimeOffset instance to represent ...
0
votes
1answer
111 views
How can I clear cached timezone information in .net 2.0?
I have a sealed Windows XP embedded device which always boots up with the same windows settings. When my software starts up it needs to set the timezone of the machine to a user-configurable setting. ...
1
vote
1answer
58 views
Get Time US to calculate signature Amazon
I see in . Net have FindSystemTimeZoneById which can get DateTime from any country, but I can't use it in wp7. I use service of Amazon, if my device set wrong time, I can't calculate signature to ...
1
vote
1answer
40 views
Event? for TimeChanged in Windows
In the previous version of my Application to enable capture that the time had been changed in Windows I implemented an IMessageFilter to capture WM_ that is sent by windows when the time has changed.
...
3
votes
2answers
2k views
Set date, time & time zone on remote computer using C#
How do you set date, time and the time zone setting of the remote computer using C#?
Basically, I want to update the time on selected machines in the network.
Creating time server is not an option as ...
2
votes
1answer
663 views
ASP.NET 3.5: Difficulty getting timezone's current offset
Not sure what I'm doing wrong here. I'm trying to get the current # hours UTC offset for Eastern Australia. The code I'm using is coming back with GMT+10 hours, whereas it should be 11, as they're in ...

