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
- BuilderInfo.cs
- EditorZoneAutoFormat.cs
- XmlDataImplementation.cs
- RectValueSerializer.cs
- ResourceDescriptionAttribute.cs
- QueryStringConverter.cs
- BuildProvider.cs
- Configuration.cs
- SmiMetaData.cs
- ObjectRef.cs
- DocumentXmlWriter.cs
- DrawingContextDrawingContextWalker.cs
- httpapplicationstate.cs
- Point.cs
- PropertyMap.cs
- QueryStringParameter.cs
- TypeDescriptor.cs
- RuntimeArgumentHandle.cs
- ToolStripSplitStackLayout.cs
- EventSourceCreationData.cs
- UIPropertyMetadata.cs
- SelectionProviderWrapper.cs
- SectionInput.cs
- SqlXml.cs
- CompilerScopeManager.cs
- GeneralTransform3DCollection.cs
- SecurityChannelFaultConverter.cs
- ScrollBar.cs
- AdornerDecorator.cs
- RunClient.cs
- BufferAllocator.cs
- SqlDataSourceCustomCommandPanel.cs
- UserNameSecurityToken.cs
- hwndwrapper.cs
- RequestNavigateEventArgs.cs
- EntityDataReader.cs
- ServiceEndpointCollection.cs
- HostDesigntimeLicenseContext.cs
- CatalogPartCollection.cs
- PointValueSerializer.cs
- StrokeNodeOperations2.cs
- ReferenceSchema.cs
- metrodevice.cs
- HttpProcessUtility.cs
- UxThemeWrapper.cs
- AggregationMinMaxHelpers.cs
- IteratorFilter.cs
- FixedSOMSemanticBox.cs
- CollectionContainer.cs
- PageParserFilter.cs
- CompositionTarget.cs
- unsafeIndexingFilterStream.cs
- HandleCollector.cs
- login.cs
- KerberosRequestorSecurityToken.cs
- ListView.cs
- ExpressionNode.cs
- Baml6ConstructorInfo.cs
- WebPartZone.cs
- DataListCommandEventArgs.cs
- DataGridCellsPanel.cs
- DocumentXPathNavigator.cs
- RegisteredHiddenField.cs
- MenuCommandsChangedEventArgs.cs
- WindowInteractionStateTracker.cs
- XPathMessageFilterElement.cs
- TextRangeBase.cs
- PropertyHelper.cs
- SqlFactory.cs
- Int16.cs
- HtmlDocument.cs
- TouchesCapturedWithinProperty.cs
- Parser.cs
- EndEvent.cs
- SiteOfOriginPart.cs
- ModelItemDictionary.cs
- ContentPlaceHolder.cs
- _NetRes.cs
- InstanceNameConverter.cs
- StylusDownEventArgs.cs
- SamlEvidence.cs
- CheckedPointers.cs
- SafeBitVector32.cs
- GridItemPattern.cs
- ConfigXmlSignificantWhitespace.cs
- WebControlAdapter.cs
- MessageQueueCriteria.cs
- FixUp.cs
- xamlnodes.cs
- PortCache.cs
- UIElement3DAutomationPeer.cs
- ListViewSelectEventArgs.cs
- HotSpotCollection.cs
- PrintingPermission.cs
- ViewGenResults.cs
- CommandField.cs
- ProcessHost.cs
- _ConnectOverlappedAsyncResult.cs
- Point3DKeyFrameCollection.cs
- AnimatedTypeHelpers.cs