Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Currency.cs / 1 / Currency.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System { using System; using System.Globalization; using System.Runtime.CompilerServices; [Serializable] internal struct Currency { internal long m_value; // Constructs a Currency from a Decimal value. // public Currency(Decimal value) { m_value = Decimal.ToCurrency(value).m_value; } // Constructs a Currency from a long value without scaling. The // ignored parameter exists only to distinguish this constructor // from the constructor that takes a long. Used only in the System // package, especially in Variant. internal Currency(long value, int ignored) { m_value = value; } // Creates a Currency from an OLE Automation Currency. This method // applies no scaling to the Currency value, essentially doing a bitwise // copy. // public static Currency FromOACurrency(long cy){ return new Currency(cy, 0); } //Creates an OLE Automation Currency from a Currency instance. This // method applies no scaling to the Currency value, essentially doing // a bitwise copy. // public long ToOACurrency() { return m_value; } // Converts a Currency to a Decimal. // public static Decimal ToDecimal(Currency c) { Decimal result = new Decimal (); FCallToDecimal (ref result, c); return result; } [MethodImplAttribute(MethodImplOptions.InternalCall)] private static extern void FCallToDecimal(ref Decimal result,Currency c); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System { using System; using System.Globalization; using System.Runtime.CompilerServices; [Serializable] internal struct Currency { internal long m_value; // Constructs a Currency from a Decimal value. // public Currency(Decimal value) { m_value = Decimal.ToCurrency(value).m_value; } // Constructs a Currency from a long value without scaling. The // ignored parameter exists only to distinguish this constructor // from the constructor that takes a long. Used only in the System // package, especially in Variant. internal Currency(long value, int ignored) { m_value = value; } // Creates a Currency from an OLE Automation Currency. This method // applies no scaling to the Currency value, essentially doing a bitwise // copy. // public static Currency FromOACurrency(long cy){ return new Currency(cy, 0); } //Creates an OLE Automation Currency from a Currency instance. This // method applies no scaling to the Currency value, essentially doing // a bitwise copy. // public long ToOACurrency() { return m_value; } // Converts a Currency to a Decimal. // public static Decimal ToDecimal(Currency c) { Decimal result = new Decimal (); FCallToDecimal (ref result, c); return result; } [MethodImplAttribute(MethodImplOptions.InternalCall)] private static extern void FCallToDecimal(ref Decimal result,Currency c); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DispatcherProcessingDisabled.cs
- Win32SafeHandles.cs
- PrimitiveDataContract.cs
- CodeTypeDeclaration.cs
- WebPartDisplayModeCollection.cs
- XmlDataDocument.cs
- DataGridViewElement.cs
- DiscreteKeyFrames.cs
- CollectionCodeDomSerializer.cs
- AddInStore.cs
- DurableInstanceProvider.cs
- ListViewItemMouseHoverEvent.cs
- RelatedCurrencyManager.cs
- SizeLimitedCache.cs
- BamlBinaryReader.cs
- DataListItemEventArgs.cs
- CodeBlockBuilder.cs
- Char.cs
- TextRunProperties.cs
- WeakReference.cs
- HtmlShimManager.cs
- AudioLevelUpdatedEventArgs.cs
- SQLGuid.cs
- AssemblyBuilderData.cs
- XmlAttributeAttribute.cs
- ThreadStartException.cs
- SmiEventSink.cs
- KeyPressEvent.cs
- AutomationPropertyInfo.cs
- FocusManager.cs
- Bezier.cs
- CodeTypeConstructor.cs
- HtmlTableCell.cs
- EncoderFallback.cs
- TrimSurroundingWhitespaceAttribute.cs
- securitycriticaldataClass.cs
- ToolBarPanel.cs
- GeneralTransform2DTo3D.cs
- WCFModelStrings.Designer.cs
- FontStretches.cs
- PixelFormat.cs
- Int64Storage.cs
- TypeInfo.cs
- Compiler.cs
- ServiceObjectContainer.cs
- WindowsMenu.cs
- SystemNetHelpers.cs
- XmlUtil.cs
- CollectionDataContract.cs
- Shared.cs
- GestureRecognizer.cs
- Claim.cs
- EDesignUtil.cs
- IntegrationExceptionEventArgs.cs
- AssemblyInfo.cs
- HttpRequestTraceRecord.cs
- X509CertificateClaimSet.cs
- entitydatasourceentitysetnameconverter.cs
- ZipArchive.cs
- Size3D.cs
- HWStack.cs
- SwitchLevelAttribute.cs
- CompilationSection.cs
- UnsafeNativeMethods.cs
- StylusButtonEventArgs.cs
- SqlInternalConnection.cs
- Win32MouseDevice.cs
- AuthenticationConfig.cs
- WebPartAuthorizationEventArgs.cs
- _SslStream.cs
- ToolStripRenderer.cs
- SwitchElementsCollection.cs
- _NativeSSPI.cs
- TypeReference.cs
- ProxyElement.cs
- PolicyValidationException.cs
- SafeFileMappingHandle.cs
- RegisteredDisposeScript.cs
- CommandHelpers.cs
- CultureInfoConverter.cs
- CollectionBase.cs
- ServiceDescriptions.cs
- AudioFileOut.cs
- TaskExtensions.cs
- AstNode.cs
- TraversalRequest.cs
- DataGridCellClipboardEventArgs.cs
- WindowsPrincipal.cs
- XmlWellformedWriter.cs
- SrgsElement.cs
- HttpEncoderUtility.cs
- DrawingBrush.cs
- PersonalizationState.cs
- MenuItem.cs
- SessionEndingEventArgs.cs
- JsonWriter.cs
- FileClassifier.cs
- StringResourceManager.cs
- VisualStyleTypesAndProperties.cs
- MasterPageParser.cs