Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / SingleConverter.cs / 1 / SingleConverter.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 SingleConverter : BaseNumberConverter { ///Provides a type /// converter to convert single-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(Single); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToSingle(value, CultureInfo.CurrentCulture); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return Single.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 Single.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((Single)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 SingleConverter : BaseNumberConverter { ///Provides a type /// converter to convert single-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(Single); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToSingle(value, CultureInfo.CurrentCulture); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return Single.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 Single.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((Single)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
- ObjectTypeMapping.cs
- OdbcException.cs
- AspNetPartialTrustHelpers.cs
- HttpRequestTraceRecord.cs
- BamlTreeUpdater.cs
- InkCanvasAutomationPeer.cs
- ILGenerator.cs
- PenThreadPool.cs
- PropertyOrder.cs
- ButtonRenderer.cs
- BatchServiceHost.cs
- SqlBulkCopyColumnMapping.cs
- XmlSerializerVersionAttribute.cs
- ValueSerializerAttribute.cs
- MappingException.cs
- HTTPNotFoundHandler.cs
- SendSecurityHeaderElementContainer.cs
- TraceListener.cs
- SortFieldComparer.cs
- LicenseException.cs
- DependencyPropertyConverter.cs
- ZipIOLocalFileDataDescriptor.cs
- SystemIcons.cs
- X509Utils.cs
- ApplicationInfo.cs
- NotSupportedException.cs
- IsolatedStorageFilePermission.cs
- RoutingExtension.cs
- PolyLineSegment.cs
- sqlstateclientmanager.cs
- QueueException.cs
- FragmentQuery.cs
- QuaternionAnimationBase.cs
- RenderingEventArgs.cs
- VBCodeProvider.cs
- MILUtilities.cs
- ProviderConnectionPointCollection.cs
- DefaultHttpHandler.cs
- PlatformCulture.cs
- RuntimeCompatibilityAttribute.cs
- MasterPage.cs
- TagPrefixCollection.cs
- NonSerializedAttribute.cs
- TextChange.cs
- HotSpot.cs
- PhysicalFontFamily.cs
- KeysConverter.cs
- LogEntrySerialization.cs
- InkSerializer.cs
- Literal.cs
- XmlSchemaAppInfo.cs
- XmlName.cs
- X509WindowsSecurityToken.cs
- Table.cs
- SimpleBitVector32.cs
- ApplicationInterop.cs
- WindowHideOrCloseTracker.cs
- CacheDict.cs
- DataGridState.cs
- ConfigPathUtility.cs
- basevalidator.cs
- DataGridTableCollection.cs
- ComboBoxAutomationPeer.cs
- TypeNameParser.cs
- GridViewColumnCollection.cs
- XmlSchemaElement.cs
- EntitySetRetriever.cs
- FormsAuthentication.cs
- EncoderFallback.cs
- DataGridView.cs
- BaseParser.cs
- UserNameSecurityTokenProvider.cs
- AttachedAnnotationChangedEventArgs.cs
- DataGridViewIntLinkedList.cs
- ToolStripMenuItemDesigner.cs
- SqlDataReader.cs
- SqlMethodTransformer.cs
- EmissiveMaterial.cs
- CompilationUtil.cs
- CompilerInfo.cs
- _FtpControlStream.cs
- PointCollectionConverter.cs
- EnumBuilder.cs
- BinHexEncoder.cs
- MaskedTextBoxTextEditor.cs
- TextChange.cs
- JsonDeserializer.cs
- TypeDescriptorFilterService.cs
- DoWorkEventArgs.cs
- SimpleTextLine.cs
- Selector.cs
- CoTaskMemSafeHandle.cs
- StructureChangedEventArgs.cs
- UnmanagedMemoryStreamWrapper.cs
- WebConfigurationHostFileChange.cs
- SmtpTransport.cs
- diagnosticsswitches.cs
- HtmlAnchor.cs
- Rss20FeedFormatter.cs
- TextWriter.cs