Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / DoubleConverter.cs / 1 / DoubleConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Remoting; using System.Runtime.Serialization.Formatters; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class DoubleConverter : BaseNumberConverter { ///Provides a type /// converter to convert double-precision, floating point number objects to and from various /// other representations. ////// Determines whether this editor will attempt to convert hex (0x or #) strings /// internal override bool AllowHex { get { return false; } } ////// The Type this converter is targeting (e.g. Int16, UInt32, etc.) /// internal override Type TargetType { get { return typeof(Double); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToDouble(value, CultureInfo.CurrentCulture); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return Double.Parse(value, NumberStyles.Float, formatInfo); } ////// Convert the given value to a string using the given CultureInfo /// internal override object FromString(string value, CultureInfo culture){ return Double.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((Double)value).ToString("R", formatInfo); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CommentAction.cs
- SignatureToken.cs
- ObjectParameterCollection.cs
- PointLightBase.cs
- PerformanceCountersElement.cs
- NativeMethods.cs
- Rect3D.cs
- NodeLabelEditEvent.cs
- storagemappingitemcollection.viewdictionary.cs
- HttpsHostedTransportConfiguration.cs
- _SSPIWrapper.cs
- CheckoutException.cs
- DoubleConverter.cs
- RadialGradientBrush.cs
- RegexMatchCollection.cs
- XmlException.cs
- GcSettings.cs
- MemoryStream.cs
- SoapObjectInfo.cs
- CommonXSendMessage.cs
- XmlDataSource.cs
- PolygonHotSpot.cs
- CodeRemoveEventStatement.cs
- XmlWriterSettings.cs
- OSFeature.cs
- DuplicateWaitObjectException.cs
- SamlAction.cs
- TransformGroup.cs
- SerializableAttribute.cs
- IERequestCache.cs
- FileClassifier.cs
- ControlPager.cs
- MobileRedirect.cs
- Helpers.cs
- Item.cs
- HttpSessionStateWrapper.cs
- IdleTimeoutMonitor.cs
- ToolStripMenuItem.cs
- ObjectView.cs
- PropertyRecord.cs
- WindowsSpinner.cs
- TemplatePropertyEntry.cs
- DateTimeOffset.cs
- RuleSettings.cs
- SchemaMerger.cs
- SingleKeyFrameCollection.cs
- FileDialogPermission.cs
- TextBoxView.cs
- EventManager.cs
- DirectoryObjectSecurity.cs
- CommandLineParser.cs
- DbProviderFactories.cs
- FamilyCollection.cs
- EmptyReadOnlyDictionaryInternal.cs
- CharKeyFrameCollection.cs
- ProjectionPathBuilder.cs
- webeventbuffer.cs
- WebPartTransformerAttribute.cs
- DataSourceNameHandler.cs
- RoleManagerModule.cs
- SqlIdentifier.cs
- TransformCryptoHandle.cs
- BitmapImage.cs
- TypefaceCollection.cs
- PropertyTabAttribute.cs
- FunctionMappingTranslator.cs
- Columns.cs
- BuildResultCache.cs
- DataServiceKeyAttribute.cs
- CodeObject.cs
- TimersDescriptionAttribute.cs
- RightsManagementErrorHandler.cs
- SqlXml.cs
- OperationDescriptionCollection.cs
- Debug.cs
- GroupStyle.cs
- CodeDirectoryCompiler.cs
- ProxyAttribute.cs
- Array.cs
- TraceEventCache.cs
- DataGridRowDetailsEventArgs.cs
- DataControlImageButton.cs
- XmlSchemaInferenceException.cs
- SecurityTokenAuthenticator.cs
- DeferredTextReference.cs
- securestring.cs
- ResourceSet.cs
- HttpCapabilitiesEvaluator.cs
- DispatcherObject.cs
- ComplexPropertyEntry.cs
- DayRenderEvent.cs
- DispatchOperation.cs
- ImmutableCommunicationTimeouts.cs
- HttpCacheVaryByContentEncodings.cs
- PageAsyncTask.cs
- SetterBase.cs
- ToolStripEditorManager.cs
- XamlToRtfWriter.cs
- Attachment.cs
- ConstantSlot.cs