Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / SingleConverter.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NameTable.cs
- BulletDecorator.cs
- WindowsGraphics.cs
- XmlSchemaType.cs
- SecurityRequiresReviewAttribute.cs
- SerializationSectionGroup.cs
- RowsCopiedEventArgs.cs
- WebResourceUtil.cs
- WebServiceFault.cs
- DaylightTime.cs
- PluralizationServiceUtil.cs
- BitmapPalette.cs
- WinEventTracker.cs
- DragDrop.cs
- XmlNavigatorFilter.cs
- Point3DIndependentAnimationStorage.cs
- DataGridColumn.cs
- TemplateColumn.cs
- CodePageEncoding.cs
- SuppressMessageAttribute.cs
- SourceFileInfo.cs
- DataSourceViewSchemaConverter.cs
- ListControl.cs
- InstanceDataCollectionCollection.cs
- TextViewDesigner.cs
- SortedDictionary.cs
- SecurityContext.cs
- ObjectQuery.cs
- RangeBase.cs
- Base64WriteStateInfo.cs
- HttpRuntime.cs
- Camera.cs
- KnownColorTable.cs
- RoleManagerSection.cs
- Control.cs
- _OverlappedAsyncResult.cs
- ObjectAnimationUsingKeyFrames.cs
- input.cs
- AccessViolationException.cs
- LinqDataSourceUpdateEventArgs.cs
- XmlSchemaFacet.cs
- WebPartZoneCollection.cs
- ApplicationSecurityInfo.cs
- BindingsCollection.cs
- ClientType.cs
- XmlCompatibilityReader.cs
- ResourceSet.cs
- FormatConvertedBitmap.cs
- BitmapFrame.cs
- HiddenFieldPageStatePersister.cs
- SamlAction.cs
- Compiler.cs
- MachineKeyConverter.cs
- FilterEventArgs.cs
- RelationshipFixer.cs
- AssemblyBuilder.cs
- SqlLiftWhereClauses.cs
- CmsInterop.cs
- ParamArrayAttribute.cs
- ErrorWebPart.cs
- OutOfMemoryException.cs
- LayoutSettings.cs
- Padding.cs
- Queue.cs
- StrongNameMembershipCondition.cs
- ToolStripContentPanel.cs
- SessionEndingEventArgs.cs
- MenuItem.cs
- XPathNavigatorKeyComparer.cs
- QuinticEase.cs
- JsonByteArrayDataContract.cs
- Propagator.cs
- Rect.cs
- ToolStripDesignerAvailabilityAttribute.cs
- Component.cs
- UserControlBuildProvider.cs
- CustomAttributeFormatException.cs
- InfoCardSymmetricAlgorithm.cs
- ContainerActivationHelper.cs
- Permission.cs
- SkipQueryOptionExpression.cs
- HierarchicalDataBoundControl.cs
- BaseParser.cs
- BitmapCodecInfoInternal.cs
- CodeObjectCreateExpression.cs
- MetadataException.cs
- PropertiesTab.cs
- ActiveDocumentEvent.cs
- ClockController.cs
- XPathScanner.cs
- SiteMapNode.cs
- BinaryMessageEncodingBindingElement.cs
- CircleHotSpot.cs
- SqlNode.cs
- WriteFileContext.cs
- TableCellCollection.cs
- ProtocolException.cs
- EdmProviderManifest.cs
- UpdateInfo.cs
- FilterableAttribute.cs