Click here to Skip to main content
15,894,410 members
Home / Discussions / C#
   

C#

 
GeneralRe: DateTime.Now Pin
George_George10-Jun-08 3:00
George_George10-Jun-08 3:00 
AnswerRe: DateTime.Now Pin
PIEBALDconsult9-Jun-08 17:48
mvePIEBALDconsult9-Jun-08 17:48 
GeneralRe: DateTime.Now Pin
George_George9-Jun-08 18:47
George_George9-Jun-08 18:47 
GeneralRe: DateTime.Now Pin
PIEBALDconsult9-Jun-08 19:19
mvePIEBALDconsult9-Jun-08 19:19 
GeneralRe: DateTime.Now Pin
George_George9-Jun-08 19:47
George_George9-Jun-08 19:47 
AnswerRe: DateTime.Now Pin
Joe Woodbury9-Jun-08 19:27
professionalJoe Woodbury9-Jun-08 19:27 
GeneralRe: DateTime.Now Pin
George_George9-Jun-08 19:45
George_George9-Jun-08 19:45 
AnswerRe: DateTime.Now Pin
Guffa9-Jun-08 22:22
Guffa9-Jun-08 22:22 
There are actually several different values created when calling the Now property. The Now property calls UtcNow and ToLocalTime, UtcNow calls GetSystemTimeAsFileTime, ToLocalTime calls TimeZone.CurrentTimeZone.ToLocalTime, et.c.

However, as all those values are value types, the memory is allocated on the stack. The allocation is done when the stack frame is created for each call, and actually doesn't take any extra time at all. So, the only work really done is actually moving the value, which is a single machine instruction.

Despite everything, the person most likely to be fooling you next is yourself.

modified on Tuesday, June 10, 2008 4:43 AM

GeneralRe: DateTime.Now Pin
George_George10-Jun-08 2:08
George_George10-Jun-08 2:08 
GeneralRe: DateTime.Now Pin
Guffa10-Jun-08 11:40
Guffa10-Jun-08 11:40 
GeneralRe: DateTime.Now Pin
George_George11-Jun-08 1:43
George_George11-Jun-08 1:43 
GeneralRe: DateTime.Now Pin
Guffa11-Jun-08 2:28
Guffa11-Jun-08 2:28 
GeneralRe: DateTime.Now Pin
George_George11-Jun-08 16:23
George_George11-Jun-08 16:23 
GeneralRe: DateTime.Now Pin
Guffa11-Jun-08 20:24
Guffa11-Jun-08 20:24 
GeneralRe: DateTime.Now Pin
George_George11-Jun-08 22:19
George_George11-Jun-08 22:19 
AnswerRe: DateTime.Now Pin
DaveyM6910-Jun-08 3:32
professionalDaveyM6910-Jun-08 3:32 
GeneralRe: DateTime.Now Pin
Guffa10-Jun-08 4:20
Guffa10-Jun-08 4:20 
GeneralRe: DateTime.Now Pin
DaveyM6910-Jun-08 4:43
professionalDaveyM6910-Jun-08 4:43 
GeneralRe: DateTime.Now Pin
Guffa10-Jun-08 6:03
Guffa10-Jun-08 6:03 
GeneralRe: DateTime.Now Pin
DaveyM6911-Jun-08 0:41
professionalDaveyM6911-Jun-08 0:41 
GeneralRe: DateTime.Now Pin
George_George11-Jun-08 1:33
George_George11-Jun-08 1:33 
GeneralRe: DateTime.Now Pin
DaveyM6911-Jun-08 2:37
professionalDaveyM6911-Jun-08 2:37 
GeneralRe: DateTime.Now Pin
George_George11-Jun-08 16:31
George_George11-Jun-08 16:31 
GeneralRe: DateTime.Now Pin
DaveyM6912-Jun-08 0:39
professionalDaveyM6912-Jun-08 0:39 
GeneralRe: DateTime.Now Pin
George_George12-Jun-08 1:29
George_George12-Jun-08 1:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.