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

C#

 
AnswerRe: garbage collection Pin
Guffa22-Feb-06 9:16
Guffa22-Feb-06 9:16 
GeneralRe: garbage collection Pin
Colin Angus Mackay22-Feb-06 11:28
Colin Angus Mackay22-Feb-06 11:28 
GeneralRe: garbage collection Pin
Guffa22-Feb-06 11:42
Guffa22-Feb-06 11:42 
GeneralRe: garbage collection Pin
Colin Angus Mackay22-Feb-06 11:50
Colin Angus Mackay22-Feb-06 11:50 
QuestionConvert String to decimal Pin
cppdotnet22-Feb-06 3:51
cppdotnet22-Feb-06 3:51 
AnswerRe: Convert String to decimal Pin
Judah Gabriel Himango22-Feb-06 4:10
sponsorJudah Gabriel Himango22-Feb-06 4:10 
GeneralRe: Convert String to decimal Pin
cppdotnet22-Feb-06 4:16
cppdotnet22-Feb-06 4:16 
GeneralRe: Convert String to decimal Pin
Judah Gabriel Himango22-Feb-06 4:29
sponsorJudah Gabriel Himango22-Feb-06 4:29 
Your problem is that

double val = 88.0;

Is the same value as

double val = 88.0000;

They're the same in the real mathematical sense of decimal values, as well as the same in the CLR. So, there's no way for you to print out whether it's 88.0 or 88.0000 if you're storing it as a double. I'm not sure whether there's a type in the CLR that stores an arbitrary number of decimal places as part of the value type itself.

Tech, life, family, faith: Give me a visit.
I'm currently blogging about: Connor's Christmas Spectacular!
Judah Himango


GeneralRe: Convert String to decimal Pin
Dan Neely22-Feb-06 4:37
Dan Neely22-Feb-06 4:37 
GeneralRe: Convert String to decimal Pin
Judah Gabriel Himango22-Feb-06 4:44
sponsorJudah Gabriel Himango22-Feb-06 4:44 
GeneralRe: Convert String to decimal Pin
cppdotnet22-Feb-06 5:02
cppdotnet22-Feb-06 5:02 
GeneralRe: Convert String to decimal Pin
Dan Neely22-Feb-06 6:15
Dan Neely22-Feb-06 6:15 
GeneralRe: Convert String to decimal Pin
Qhalis22-Feb-06 4:59
Qhalis22-Feb-06 4:59 
QuestionHaving Scrollbars to MDI form? Pin
majidbhutta22-Feb-06 3:50
majidbhutta22-Feb-06 3:50 
AnswerRe: Having Scrollbars to MDI form? Pin
Judah Gabriel Himango22-Feb-06 7:13
sponsorJudah Gabriel Himango22-Feb-06 7:13 
QuestionSave with date format Pin
mostafa_h22-Feb-06 3:29
mostafa_h22-Feb-06 3:29 
AnswerRe: Save with date format Pin
Judah Gabriel Himango22-Feb-06 4:03
sponsorJudah Gabriel Himango22-Feb-06 4:03 
GeneralRe: Save with date format Pin
mostafa_h22-Feb-06 4:45
mostafa_h22-Feb-06 4:45 
GeneralRe: Save with date format Pin
Judah Gabriel Himango22-Feb-06 4:48
sponsorJudah Gabriel Himango22-Feb-06 4:48 
GeneralRe: Save with date format Pin
mostafa_h22-Feb-06 6:24
mostafa_h22-Feb-06 6:24 
AnswerRe: Save with date format Pin
Le centriste22-Feb-06 6:28
Le centriste22-Feb-06 6:28 
GeneralRe: Save with date format Pin
mostafa_h22-Feb-06 7:25
mostafa_h22-Feb-06 7:25 
GeneralRe: Save with date format Pin
Le centriste22-Feb-06 7:26
Le centriste22-Feb-06 7:26 
GeneralRe: Save with date format Pin
mostafa_h22-Feb-06 11:12
mostafa_h22-Feb-06 11:12 
QuestionThreading Pin
Areff22-Feb-06 3:27
Areff22-Feb-06 3:27 

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.