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
- ExtenderControl.cs
- ResourceSetExpression.cs
- FileSystemInfo.cs
- assertwrapper.cs
- BitmapMetadataEnumerator.cs
- AlternateViewCollection.cs
- ProtectedProviderSettings.cs
- XmlQueryCardinality.cs
- Effect.cs
- ReaderWriterLock.cs
- OAVariantLib.cs
- wmiprovider.cs
- OdbcError.cs
- ToolstripProfessionalRenderer.cs
- DummyDataSource.cs
- ResourceProviderFactory.cs
- DesignerLoader.cs
- WebBrowser.cs
- UnsafeNativeMethods.cs
- LineMetrics.cs
- WebServiceHandlerFactory.cs
- ChannelTraceRecord.cs
- Transactions.cs
- WebHeaderCollection.cs
- FileDialogCustomPlacesCollection.cs
- StreamInfo.cs
- PageBuildProvider.cs
- FileNotFoundException.cs
- QuadTree.cs
- ImpersonationContext.cs
- SystemDiagnosticsSection.cs
- ColorAnimationUsingKeyFrames.cs
- JobStaple.cs
- SoapCodeExporter.cs
- MapPathBasedVirtualPathProvider.cs
- RouteItem.cs
- TranslateTransform.cs
- DataGridViewCheckBoxColumn.cs
- DiscoveryClientReferences.cs
- FrameworkTemplate.cs
- OleDbConnectionInternal.cs
- SessionStateContainer.cs
- DataGridGeneralPage.cs
- ConstraintStruct.cs
- DirectoryObjectSecurity.cs
- BaseCodeDomTreeGenerator.cs
- CustomAttributeFormatException.cs
- TableCellAutomationPeer.cs
- IFormattable.cs
- Regex.cs
- EndOfStreamException.cs
- ResourceExpressionBuilder.cs
- XmlConvert.cs
- XPathParser.cs
- JpegBitmapDecoder.cs
- DeflateInput.cs
- FileCodeGroup.cs
- updatecommandorderer.cs
- XmlSchemaComplexType.cs
- ValidationEventArgs.cs
- LinqToSqlWrapper.cs
- DetailsViewRow.cs
- DataServiceRequestOfT.cs
- MailWriter.cs
- DataGridViewRowCancelEventArgs.cs
- VirtualizingPanel.cs
- Util.cs
- SelectionItemPattern.cs
- ServiceDescriptionSerializer.cs
- SettingsAttributeDictionary.cs
- BitmapEffectDrawingContextState.cs
- StaticFileHandler.cs
- DataGridViewColumnCollection.cs
- OperationContractGenerationContext.cs
- SqlInfoMessageEvent.cs
- BaseCodePageEncoding.cs
- DriveInfo.cs
- isolationinterop.cs
- ThreadStartException.cs
- GeneralTransformCollection.cs
- WorkingDirectoryEditor.cs
- AssertSection.cs
- IndexedString.cs
- VoiceObjectToken.cs
- XmlImplementation.cs
- Clipboard.cs
- EmbeddedMailObject.cs
- PermissionListSet.cs
- DynamicDocumentPaginator.cs
- RecordManager.cs
- odbcmetadatafactory.cs
- ECDsaCng.cs
- FrameworkElement.cs
- TemplateControlBuildProvider.cs
- ConfigurationStrings.cs
- Quaternion.cs
- CompositeFontFamily.cs
- TemplateParser.cs
- X509CertificateCollection.cs
- DynamicMetaObjectBinder.cs