cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Windows Programming
Difference between System::Double vs dou
Difference between System::Double vs double
Mar 23, 2012 at 10:34pm UTC
Arctic Inferno
(10)
They’re both double-precision floating-point numbers,
so expected to have identical precision.
Visual Studio 2010 editor displays System::Double in black,
while double is displayed in blue.
Speed/performance?
Last edited on
Mar 23, 2012 at 11:36pm UTC
Mar 24, 2012 at 12:30am UTC
soranz
(536)
They r the same. No difference that I know except that 'double' is faster to type.
Mar 24, 2012 at 6:04am UTC
webJose
(2948)
That's the class that is used to box doubles. There are others: System::Int32 to box int's, System::Boolean to box bool's, etc.
Topic archived. No new replies allowed.