Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ContentOperations.cs
- DataTableClearEvent.cs
- RotationValidation.cs
- EncodingNLS.cs
- AuthenticationService.cs
- PageContentCollection.cs
- TransformedBitmap.cs
- _ProxyChain.cs
- IsolationInterop.cs
- CheckBox.cs
- ContentType.cs
- PathSegmentCollection.cs
- DataSourceConverter.cs
- ToolStripSplitStackLayout.cs
- BuildProviderUtils.cs
- ExtentKey.cs
- MergeLocalizationDirectives.cs
- ScriptReferenceBase.cs
- ObjectIDGenerator.cs
- DataListItem.cs
- RegexCaptureCollection.cs
- AssemblyBuilder.cs
- RtfControls.cs
- InputChannelBinder.cs
- MultiView.cs
- ClrPerspective.cs
- BitmapInitialize.cs
- TreeNodeBinding.cs
- DBConnection.cs
- DataGridViewLinkColumn.cs
- DecoderFallbackWithFailureFlag.cs
- LookupBindingPropertiesAttribute.cs
- DomNameTable.cs
- VirtualDirectoryMappingCollection.cs
- GridViewRowCollection.cs
- SHA256Managed.cs
- DeploymentSectionCache.cs
- HttpProfileBase.cs
- ValueType.cs
- TableChangeProcessor.cs
- XamlSerializationHelper.cs
- ComponentResourceKey.cs
- TextAction.cs
- InputLanguageManager.cs
- RandomNumberGenerator.cs
- storepermission.cs
- WindowHideOrCloseTracker.cs
- TcpConnectionPoolSettings.cs
- RegistrySecurity.cs
- XmlElementAttribute.cs
- COM2PictureConverter.cs
- CodeAccessSecurityEngine.cs
- _Win32.cs
- MoveSizeWinEventHandler.cs
- SelectionPatternIdentifiers.cs
- CodeConstructor.cs
- JsonReader.cs
- PolyBezierSegmentFigureLogic.cs
- RegistryConfigurationProvider.cs
- SiteMapSection.cs
- BaseDataList.cs
- QueryOperatorEnumerator.cs
- IERequestCache.cs
- XsdDateTime.cs
- EntitySqlQueryState.cs
- StackOverflowException.cs
- GiveFeedbackEvent.cs
- LoginUtil.cs
- ExceptionHelpers.cs
- ProfileService.cs
- ConfigurationProperty.cs
- CharacterShapingProperties.cs
- StylusOverProperty.cs
- FolderBrowserDialog.cs
- UmAlQuraCalendar.cs
- StorageAssociationSetMapping.cs
- SchemaTableOptionalColumn.cs
- HttpResponseInternalWrapper.cs
- SafeLibraryHandle.cs
- EditorPart.cs
- EventLogPermission.cs
- CompressionTransform.cs
- DataServices.cs
- Script.cs
- SyndicationItem.cs
- IfAction.cs
- DetailsViewPagerRow.cs
- NavigationProgressEventArgs.cs
- ParenthesizePropertyNameAttribute.cs
- ProxyFragment.cs
- DiffuseMaterial.cs
- MenuDesigner.cs
- X509CertificateClaimSet.cs
- MissingSatelliteAssemblyException.cs
- SerializationSectionGroup.cs
- RoleServiceManager.cs
- ProcessModelInfo.cs
- TableLayoutStyleCollection.cs
- ComponentCollection.cs
- AddInDeploymentState.cs