Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Currency.cs / 1305376 / Currency.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System { using System; using System.Globalization; using System.Runtime.CompilerServices; using System.Runtime.Versioning; #if !FEATURE_CORECLR [System.Runtime.ForceTokenStabilization] #endif //!FEATURE_CORECLR [Serializable] internal struct Currency { internal long m_value; // Constructs a Currency from a Decimal value. // #if !FEATURE_CORECLR [System.Runtime.ForceTokenStabilization] #endif //!FEATURE_CORECLR 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. // [System.Security.SecuritySafeCritical] // auto-generated public static Decimal ToDecimal(Currency c) { Decimal result = new Decimal (); FCallToDecimal (ref result, c); return result; } [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [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; using System.Runtime.Versioning; #if !FEATURE_CORECLR [System.Runtime.ForceTokenStabilization] #endif //!FEATURE_CORECLR [Serializable] internal struct Currency { internal long m_value; // Constructs a Currency from a Decimal value. // #if !FEATURE_CORECLR [System.Runtime.ForceTokenStabilization] #endif //!FEATURE_CORECLR 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. // [System.Security.SecuritySafeCritical] // auto-generated public static Decimal ToDecimal(Currency c) { Decimal result = new Decimal (); FCallToDecimal (ref result, c); return result; } [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.None)] [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
- EventSinkHelperWriter.cs
- ToolboxItem.cs
- UInt16.cs
- VisualStyleElement.cs
- SQLDouble.cs
- SqlConnectionPoolGroupProviderInfo.cs
- DelegateSerializationHolder.cs
- AtomMaterializerLog.cs
- QueryAsyncResult.cs
- DocumentViewerConstants.cs
- RegexParser.cs
- ParenthesizePropertyNameAttribute.cs
- Line.cs
- GradientStop.cs
- SqlClientWrapperSmiStreamChars.cs
- TreeNodeEventArgs.cs
- DataServiceSaveChangesEventArgs.cs
- ListControl.cs
- ResourceDictionaryCollection.cs
- TopClause.cs
- cookiecollection.cs
- PriorityChain.cs
- InkCanvasInnerCanvas.cs
- ManagementExtension.cs
- ResolvedKeyFrameEntry.cs
- XPathQueryGenerator.cs
- NotSupportedException.cs
- Header.cs
- FormViewDeleteEventArgs.cs
- DbConnectionPoolGroupProviderInfo.cs
- SignedXml.cs
- UIElementCollection.cs
- EventLogSession.cs
- SignatureHelper.cs
- SequenceFullException.cs
- DataDocumentXPathNavigator.cs
- LiteralControl.cs
- ImmutablePropertyDescriptorGridEntry.cs
- HashMembershipCondition.cs
- FixedLineResult.cs
- PriorityQueue.cs
- SmtpCommands.cs
- ExpressionVisitor.cs
- TypeDescriptorFilterService.cs
- TemporaryBitmapFile.cs
- PackWebResponse.cs
- PropertyChangeTracker.cs
- CustomAttributeBuilder.cs
- SubqueryTrackingVisitor.cs
- EventHandlingScope.cs
- HttpCacheParams.cs
- WebPartEditVerb.cs
- ToolStrip.cs
- FigureParaClient.cs
- FolderBrowserDialog.cs
- MultipleViewPattern.cs
- ComplusEndpointConfigContainer.cs
- OAVariantLib.cs
- CodeRemoveEventStatement.cs
- SafeEventLogWriteHandle.cs
- CustomLineCap.cs
- ProgressPage.cs
- NullRuntimeConfig.cs
- Attributes.cs
- RegistryKey.cs
- TextSegment.cs
- CheckBoxField.cs
- CryptoApi.cs
- XmlCustomFormatter.cs
- BlockCollection.cs
- EditorZone.cs
- ProgressBarRenderer.cs
- DataRecordInfo.cs
- RangeBase.cs
- EventToken.cs
- XhtmlTextWriter.cs
- UInt16Converter.cs
- ToolStripPanelRenderEventArgs.cs
- XamlSerializerUtil.cs
- CodeDirectiveCollection.cs
- GenerateTemporaryTargetAssembly.cs
- CodeTypeDelegate.cs
- BasicDesignerLoader.cs
- XmlQueryOutput.cs
- ListViewGroupCollectionEditor.cs
- ImageFormat.cs
- EntityCollection.cs
- _UncName.cs
- QilVisitor.cs
- ReadWriteSpinLock.cs
- HiddenField.cs
- StrongNameMembershipCondition.cs
- TextServicesCompartmentEventSink.cs
- KnownTypeHelper.cs
- _FixedSizeReader.cs
- DataGridViewCellValueEventArgs.cs
- ServicesUtilities.cs
- CategoryAttribute.cs
- RenderingEventArgs.cs
- FigureParagraph.cs