Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / DoubleConverter.cs / 1305376 / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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); } } } // 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
- CompositeCollection.cs
- ItemMap.cs
- HealthMonitoringSection.cs
- CopyNamespacesAction.cs
- XmlAttributeCollection.cs
- Matrix.cs
- AccessDataSourceView.cs
- StrongName.cs
- TextStore.cs
- Animatable.cs
- BackStopAuthenticationModule.cs
- IDataContractSurrogate.cs
- KnowledgeBase.cs
- LocalizationComments.cs
- CryptoKeySecurity.cs
- SendMailErrorEventArgs.cs
- Converter.cs
- GridSplitter.cs
- FormatVersion.cs
- SqlCacheDependencySection.cs
- SimpleType.cs
- SimpleMailWebEventProvider.cs
- Environment.cs
- TailPinnedEventArgs.cs
- RelationalExpressions.cs
- NullToBooleanConverter.cs
- BamlBinaryWriter.cs
- DataServiceHostFactory.cs
- IdentitySection.cs
- InvalidOleVariantTypeException.cs
- WS2007FederationHttpBindingElement.cs
- TableRowCollection.cs
- IncomingWebRequestContext.cs
- ResourceExpressionEditor.cs
- SqlProvider.cs
- CustomErrorsSection.cs
- StylusPointPropertyInfoDefaults.cs
- TimelineClockCollection.cs
- UTF32Encoding.cs
- PermissionSet.cs
- GlobalProxySelection.cs
- DynamicValidator.cs
- FormViewPagerRow.cs
- CultureTableRecord.cs
- AlignmentXValidation.cs
- TextElementEnumerator.cs
- COM2AboutBoxPropertyDescriptor.cs
- HttpCacheVary.cs
- KeyToListMap.cs
- SurrogateSelector.cs
- DataRow.cs
- Selector.cs
- SmtpFailedRecipientException.cs
- FreeFormDesigner.cs
- TextDecorationCollectionConverter.cs
- PrinterUnitConvert.cs
- OutputScopeManager.cs
- ChangeDirector.cs
- DeviceOverridableAttribute.cs
- NameValueCollection.cs
- Nullable.cs
- CompilerGlobalScopeAttribute.cs
- InstanceLockQueryResult.cs
- OleDbParameter.cs
- ColumnMap.cs
- PropertyChangingEventArgs.cs
- PersonalizationProviderHelper.cs
- CqlLexer.cs
- CompilerScope.cs
- HandlerFactoryWrapper.cs
- ObjectParameterCollection.cs
- XmlNamedNodeMap.cs
- MLangCodePageEncoding.cs
- CodeMemberProperty.cs
- FontStretchConverter.cs
- CodeVariableDeclarationStatement.cs
- DataListCommandEventArgs.cs
- documentsequencetextview.cs
- PowerStatus.cs
- ThemeInfoAttribute.cs
- XmlUrlResolver.cs
- VariantWrapper.cs
- cookiecollection.cs
- PropertySegmentSerializer.cs
- IEnumerable.cs
- KeyTimeConverter.cs
- FlowDocumentView.cs
- ListControlConvertEventArgs.cs
- DateTime.cs
- Mapping.cs
- ComboBoxDesigner.cs
- RowSpanVector.cs
- ConfigXmlSignificantWhitespace.cs
- PersianCalendar.cs
- LinkTarget.cs
- EnvelopeVersion.cs
- SendingRequestEventArgs.cs
- EmbeddedMailObject.cs
- StyleBamlTreeBuilder.cs
- EdmConstants.cs