Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ControlBuilder.cs
- BaseTemplateParser.cs
- DataListAutoFormat.cs
- TimeSpanStorage.cs
- UIElement3DAutomationPeer.cs
- TabControlAutomationPeer.cs
- LocalizationParserHooks.cs
- XmlTextReaderImpl.cs
- SmuggledIUnknown.cs
- UxThemeWrapper.cs
- UnsafeNativeMethods.cs
- WCFServiceClientProxyGenerator.cs
- DataRowView.cs
- SkinBuilder.cs
- SqlResolver.cs
- TableRow.cs
- SupportingTokenSpecification.cs
- CodeMemberEvent.cs
- ServiceModelConfigurationElementCollection.cs
- ContractComponent.cs
- ListBoxAutomationPeer.cs
- XsdDataContractImporter.cs
- TagMapCollection.cs
- UInt32Converter.cs
- PerfCounters.cs
- WindowsSysHeader.cs
- KeyToListMap.cs
- CompareInfo.cs
- SelectionRange.cs
- Border.cs
- IconEditor.cs
- RemotingConfiguration.cs
- CustomValidator.cs
- CngAlgorithmGroup.cs
- TransformPatternIdentifiers.cs
- ByValueEqualityComparer.cs
- xmlformatgeneratorstatics.cs
- FormatterServices.cs
- StrokeRenderer.cs
- ResourceCollectionInfo.cs
- ColumnTypeConverter.cs
- ObjectContext.cs
- MDIControlStrip.cs
- CodeGeneratorAttribute.cs
- ReferenceConverter.cs
- DictationGrammar.cs
- NativeActivityContext.cs
- ColorDialog.cs
- ReliableChannelListener.cs
- DataSourceCache.cs
- IdentityReference.cs
- Vector3DCollectionValueSerializer.cs
- MarginsConverter.cs
- DispatcherExceptionEventArgs.cs
- WeakEventManager.cs
- ThreadStartException.cs
- DbParameterCollection.cs
- RangeEnumerable.cs
- AssociationTypeEmitter.cs
- WebPartRestoreVerb.cs
- EntityExpressionVisitor.cs
- BaseDataListPage.cs
- FixedDocumentSequencePaginator.cs
- ListView.cs
- XmlSchemaCompilationSettings.cs
- NodeFunctions.cs
- TransformerInfo.cs
- AsymmetricAlgorithm.cs
- BooleanFunctions.cs
- DataSourceView.cs
- InfiniteTimeSpanConverter.cs
- NamedObject.cs
- Rfc2898DeriveBytes.cs
- HttpTransportElement.cs
- GeneralTransform3D.cs
- ActivityTypeDesigner.xaml.cs
- SmtpClient.cs
- Tile.cs
- MDIWindowDialog.cs
- DataControlButton.cs
- StylusPointProperties.cs
- ConvertEvent.cs
- MenuItem.cs
- CapabilitiesRule.cs
- GlyphCache.cs
- SrgsItemList.cs
- BitmapEffect.cs
- StylusButtonCollection.cs
- DataGridItemAutomationPeer.cs
- TableAutomationPeer.cs
- XmlILModule.cs
- SystemTcpConnection.cs
- SafeSystemMetrics.cs
- TableParaClient.cs
- DoubleCollectionValueSerializer.cs
- Highlights.cs
- TransformerTypeCollection.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- Metadata.cs
- XmlILModule.cs