Decimal data type in visual studio 2008
-
Hi everyone, I need a base-10 data type, and was wondering if there is one for the environment that I'm using. I'm using C++ in Visual Studio 2008 (Standard Edition). I know there is one in vb.net and c#. I've tried ::DECIMAL but it says this is undeclared. Thanks.
-
Hi everyone, I need a base-10 data type, and was wondering if there is one for the environment that I'm using. I'm using C++ in Visual Studio 2008 (Standard Edition). I know there is one in vb.net and c#. I've tried ::DECIMAL but it says this is undeclared. Thanks.
:confused: :confused: :confused: either you are referring to C++/CLI, the managed C++ that is running in the .NET Framework, so you can use the decimal type same as in C# and VB.NET; or you are referring to unmanaged C++ and asking in the wrong forum. One and the same Visual Studio can handle all four: C++, C++/CLI, C#, VB.NET (the latter 3 being .NET, the former not).
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use < PRE > tags for code snippets, it preserves indentation, and improves readability.
-
Hi everyone, I need a base-10 data type, and was wondering if there is one for the environment that I'm using. I'm using C++ in Visual Studio 2008 (Standard Edition). I know there is one in vb.net and c#. I've tried ::DECIMAL but it says this is undeclared. Thanks.