ImproveFloatingPointConsistency Property
Visual Studio .NET 2003
Enables improving floating-point consistency during calculations. Exposes the functionality of the compiler's /Op option.
[Visual Basic .NET]
Public Property ImproveFloatingPointConsistency() As Boolean
[Visual Basic 6]
Property Get ImproveFloatingPointConsistency() As Boolean Property Let ImproveFloatingPointConsistency( _ ByVal NewValue As Boolean _ )
[C++]
HRESULT __stdcall get_ImproveFloatingPointConsistency( /* [out, retval] */ VARIANT_BOOL* retVal ); HRESULT __stdcall put_ImproveFloatingPointConsistency( /* [in] */ VARIANT_BOOL NewValue );
[C#]
public bool ImproveFloatingPointConsistency {get; set;}
[JScript .NET]
public function get ImproveFloatingPointConsistency() : Boolean public function set ImproveFloatingPointConsistency( NewValue : Boolean )
Example
The following sample code modifies the ImproveFloatingPointConsistency property in the development environment:
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
Dim cfgs, tools As IVCCollection
Dim cfg As VCConfiguration
Dim tool As VCCLCompilerTool
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCCLCompilerTool")
tool.ImproveFloatingPointConsistency = True
End Sub
End Module
See Samples for Project Model Extensibility for information on how to compile and run this sample.
See Also
Applies To: VCCLCompilerTool Object