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
- FacetChecker.cs
- HtmlPhoneCallAdapter.cs
- TextOnlyOutput.cs
- DataGridViewComboBoxEditingControl.cs
- LicFileLicenseProvider.cs
- CreateParams.cs
- SettingsPropertyValue.cs
- BitmapImage.cs
- EpmSyndicationContentDeSerializer.cs
- PrinterResolution.cs
- StrokeNodeEnumerator.cs
- PrivacyNoticeBindingElementImporter.cs
- ToolStripGrip.cs
- QilVisitor.cs
- TabRenderer.cs
- FixedSOMTableCell.cs
- ResourcesChangeInfo.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- WebPartDisplayMode.cs
- columnmapfactory.cs
- altserialization.cs
- ImageMetadata.cs
- SafeNativeMethodsMilCoreApi.cs
- ReadOnlyDataSourceView.cs
- XmlSchemaObjectTable.cs
- TypeExtensionSerializer.cs
- SafeCryptContextHandle.cs
- CommonRemoteMemoryBlock.cs
- DateTimeOffsetConverter.cs
- ServiceBusyException.cs
- PasswordRecovery.cs
- XmlNodeComparer.cs
- StackSpiller.Bindings.cs
- MembershipValidatePasswordEventArgs.cs
- WmlCalendarAdapter.cs
- RequiredFieldValidator.cs
- ScriptBehaviorDescriptor.cs
- DetailsViewUpdateEventArgs.cs
- CustomLineCap.cs
- backend.cs
- XmlJsonWriter.cs
- SqlTypeConverter.cs
- MarshalByRefObject.cs
- FlowSwitchLink.cs
- TrustManagerPromptUI.cs
- PartialCachingControl.cs
- URLAttribute.cs
- QueryContinueDragEventArgs.cs
- HtmlEmptyTagControlBuilder.cs
- _Rfc2616CacheValidators.cs
- SystemFonts.cs
- FormatConvertedBitmap.cs
- SystemColorTracker.cs
- SQLDouble.cs
- NGCPageContentSerializerAsync.cs
- Style.cs
- TokenBasedSet.cs
- RectConverter.cs
- HtmlInputControl.cs
- BindingContext.cs
- LineProperties.cs
- PersistenceContext.cs
- NameValuePair.cs
- CustomAssemblyResolver.cs
- ImpersonateTokenRef.cs
- WebConvert.cs
- RecognizedAudio.cs
- SmiConnection.cs
- TypedCompletedAsyncResult.cs
- XmlSchema.cs
- GridViewCancelEditEventArgs.cs
- UInt16Converter.cs
- GridViewCancelEditEventArgs.cs
- WindowsGraphics.cs
- IEnumerable.cs
- HttpListenerRequestUriBuilder.cs
- RegexFCD.cs
- GeneratedContractType.cs
- PeerCredential.cs
- GridViewDeletedEventArgs.cs
- TraceData.cs
- AttachedAnnotationChangedEventArgs.cs
- ParameterModifier.cs
- WebConfigurationHostFileChange.cs
- DataTableExtensions.cs
- HitTestWithGeometryDrawingContextWalker.cs
- File.cs
- ViewBase.cs
- AnnotationResourceChangedEventArgs.cs
- WmpBitmapDecoder.cs
- Semaphore.cs
- AssemblyUtil.cs
- VectorValueSerializer.cs
- NetStream.cs
- CngProperty.cs
- SiteMapNode.cs
- _SafeNetHandles.cs
- QuaternionValueSerializer.cs
- HandoffBehavior.cs
- Label.cs