Click here to Skip to main content
15,909,242 members
Home / Discussions / C#
   

C#

 
AnswerRe: Parse javascript Pin
Ziga122-Feb-10 7:35
Ziga122-Feb-10 7:35 
Question'Basic' Client /Server Pin
tdata21-Feb-10 23:49
tdata21-Feb-10 23:49 
AnswerRe: 'Basic' Client /Server Pin
Paulo Zemek22-Feb-10 2:59
Paulo Zemek22-Feb-10 2:59 
AnswerRe: 'Basic' Client /Server Pin
Ravi Bhavnani22-Feb-10 3:13
professionalRavi Bhavnani22-Feb-10 3:13 
AnswerRe: 'Basic' Client /Server [modified] Pin
tdata22-Feb-10 3:44
tdata22-Feb-10 3:44 
AnswerRe: 'Basic' Client /Server Pin
tdata23-Feb-10 22:08
tdata23-Feb-10 22:08 
QuestionDisplay correct date in asp.net website Pin
dalila y21-Feb-10 22:52
dalila y21-Feb-10 22:52 
AnswerRe: Display correct date in asp.net website Pin
OriginalGriff22-Feb-10 3:09
mveOriginalGriff22-Feb-10 3:09 
Just to add to stancrms' answer, if you are ever using DateTime.Now always take a local copy first, just the way he does:
DateTime dtNow = DateTime.Now;
and then work from that. If you don't, then you can get intermittent bugs since DateTime.Now is not fixed - it can change between two successive calls.
For example, if it is 31st December 2010 at 23:59:59 and you call DateTime.Now the result could be in 2010 or 2011. This can be annoying to find, especially when the difference is an hour or so, or Summer Time ends and the clocks go back!
You should never use standby on an elephant. It always crashes when you lift the ears. - Mark Wallace

C/C++ (I dont see a huge difference between them, and the 'benefits' of C++ are questionable, who needs inheritance when you have copy and paste) - fat_boy

Questionskype Pin
sanforjackass21-Feb-10 21:11
sanforjackass21-Feb-10 21:11 
AnswerRe: skype Pin
Dan Mos21-Feb-10 21:23
Dan Mos21-Feb-10 21:23 
AnswerMessage Removed Pin
21-Feb-10 21:25
stancrm21-Feb-10 21:25 
GeneralRe: skype Pin
sanforjackass21-Feb-10 21:35
sanforjackass21-Feb-10 21:35 
GeneralMessage Removed Pin
21-Feb-10 21:41
stancrm21-Feb-10 21:41 
GeneralRe: skype Pin
sanforjackass21-Feb-10 21:45
sanforjackass21-Feb-10 21:45 
GeneralMessage Removed Pin
21-Feb-10 21:47
stancrm21-Feb-10 21:47 
GeneralRe: skype Pin
sanforjackass21-Feb-10 21:52
sanforjackass21-Feb-10 21:52 
GeneralRe: skype Pin
Richard MacCutchan21-Feb-10 21:48
mveRichard MacCutchan21-Feb-10 21:48 
GeneralRe: skype Pin
sanforjackass21-Feb-10 22:10
sanforjackass21-Feb-10 22:10 
GeneralMessage Closed Pin
21-Feb-10 22:27
stancrm21-Feb-10 22:27 
GeneralRe: skype Pin
sanforjackass21-Feb-10 23:08
sanforjackass21-Feb-10 23:08 
AnswerRe: skype Pin
Kevin Marois22-Feb-10 6:15
professionalKevin Marois22-Feb-10 6:15 
GeneralRe: skype Pin
sanforjackass22-Feb-10 9:47
sanforjackass22-Feb-10 9:47 
AnswerRe: skype Pin
shawnzhang24-Feb-10 21:58
shawnzhang24-Feb-10 21:58 
QuestionBest XMPP/Jabber Library? Pin
Mohammad Tarik21-Feb-10 20:24
Mohammad Tarik21-Feb-10 20:24 
AnswerRe: Best XMPP/Jabber Library? Pin
Mohammad Tarik22-Feb-10 19:22
Mohammad Tarik22-Feb-10 19:22 

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.