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
- FilterElement.cs
- StickyNoteAnnotations.cs
- DataServiceQueryProvider.cs
- XmlNotation.cs
- SiteMembershipCondition.cs
- RemotingConfigParser.cs
- EventTrigger.cs
- ValidatorCompatibilityHelper.cs
- DropDownHolder.cs
- XmlSchemaCompilationSettings.cs
- WebServiceTypeData.cs
- GeneralTransformGroup.cs
- SqlAggregateChecker.cs
- StyleCollection.cs
- XXXInfos.cs
- Root.cs
- StreamingContext.cs
- XmlSchemaSimpleContentExtension.cs
- SqlServer2KCompatibilityAnnotation.cs
- Adorner.cs
- NonClientArea.cs
- MethodBuilderInstantiation.cs
- DBDataPermissionAttribute.cs
- BamlLocalizabilityResolver.cs
- ExtendedPropertyCollection.cs
- PointF.cs
- CategoryGridEntry.cs
- ProjectionCamera.cs
- XmlDictionaryWriter.cs
- XsltConvert.cs
- FormattedText.cs
- ToolStripRendererSwitcher.cs
- NonSerializedAttribute.cs
- ConfigUtil.cs
- FlowDecision.cs
- DisableDpiAwarenessAttribute.cs
- SimpleHandlerFactory.cs
- SqlDataSourceStatusEventArgs.cs
- DbConnectionHelper.cs
- CookieParameter.cs
- Reference.cs
- FrameworkElement.cs
- PreviewPageInfo.cs
- BindUriHelper.cs
- Debug.cs
- InstanceCreationEditor.cs
- EnumerableRowCollection.cs
- EntityDataSourceDesignerHelper.cs
- ExternalCalls.cs
- PrivilegeNotHeldException.cs
- InputBinder.cs
- ListViewItem.cs
- NonDualMessageSecurityOverHttp.cs
- UnicastIPAddressInformationCollection.cs
- CheckoutException.cs
- XmlSchemaInferenceException.cs
- Graphics.cs
- DataGridViewHeaderCell.cs
- AppDomainProtocolHandler.cs
- DirtyTextRange.cs
- IntegerValidatorAttribute.cs
- SectionUpdates.cs
- WindowsSlider.cs
- WindowsListViewItemStartMenu.cs
- SmiEventSink_Default.cs
- Int32CAMarshaler.cs
- HitTestParameters3D.cs
- Animatable.cs
- CollectionsUtil.cs
- GlyphInfoList.cs
- SqlHelper.cs
- RijndaelManagedTransform.cs
- PolicyDesigner.cs
- EventProviderBase.cs
- SystemUdpStatistics.cs
- ScriptingSectionGroup.cs
- XmlDataSourceView.cs
- Mapping.cs
- NativeWindow.cs
- CreateUserErrorEventArgs.cs
- DynamicPhysicalDiscoSearcher.cs
- TextContainerHelper.cs
- WebControlsSection.cs
- Baml2006KeyRecord.cs
- ProxyDataContractResolver.cs
- EpmCustomContentWriterNodeData.cs
- DataObjectAttribute.cs
- Wizard.cs
- ToolStripAdornerWindowService.cs
- ComponentDispatcher.cs
- GB18030Encoding.cs
- Point.cs
- FormClosingEvent.cs
- DirtyTextRange.cs
- BaseTemplateBuildProvider.cs
- HtmlEmptyTagControlBuilder.cs
- AssertFilter.cs
- SmiEventSink_DeferedProcessing.cs
- DoubleStorage.cs
- XmlNullResolver.cs