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
- WindowsAuthenticationEventArgs.cs
- _ConnectStream.cs
- XamlPathDataSerializer.cs
- ItemMap.cs
- PublisherIdentityPermission.cs
- Profiler.cs
- MobilePage.cs
- TemplateEditingFrame.cs
- TextContainerHelper.cs
- SQLGuidStorage.cs
- ProfileManager.cs
- TempFiles.cs
- CompositeCollectionView.cs
- DocumentXmlWriter.cs
- InternalMappingException.cs
- _AutoWebProxyScriptWrapper.cs
- BigInt.cs
- AssociationSet.cs
- RSAPKCS1SignatureDeformatter.cs
- DataSourceProvider.cs
- EDesignUtil.cs
- TypeBuilder.cs
- RouteItem.cs
- LinearQuaternionKeyFrame.cs
- Internal.cs
- Convert.cs
- GroupItemAutomationPeer.cs
- DialogResultConverter.cs
- AnyReturnReader.cs
- FieldAccessException.cs
- TextBlock.cs
- CheckBoxFlatAdapter.cs
- SystemColorTracker.cs
- CryptographicAttribute.cs
- Clause.cs
- X509Utils.cs
- DataGridViewRowPostPaintEventArgs.cs
- AVElementHelper.cs
- XmlResolver.cs
- ResXFileRef.cs
- XmlNamespaceMapping.cs
- FileNotFoundException.cs
- Camera.cs
- SetState.cs
- EventDescriptorCollection.cs
- SHA1Managed.cs
- AutomationPropertyInfo.cs
- Char.cs
- DateTimeConstantAttribute.cs
- CrossContextChannel.cs
- RemotingSurrogateSelector.cs
- WebConfigurationHost.cs
- NodeLabelEditEvent.cs
- PolicyImporterElement.cs
- CorrelationActionMessageFilter.cs
- XmlWellformedWriter.cs
- CompModHelpers.cs
- FileDialogCustomPlacesCollection.cs
- FilteredDataSetHelper.cs
- CustomPopupPlacement.cs
- ViewBox.cs
- Border.cs
- CorePropertiesFilter.cs
- ValidationHelper.cs
- ModifierKeysConverter.cs
- MexHttpsBindingCollectionElement.cs
- TransactionTable.cs
- DrawingContextWalker.cs
- XmlSchemaException.cs
- HostProtectionPermission.cs
- EventSourceCreationData.cs
- DelegatingTypeDescriptionProvider.cs
- PerformanceCountersBase.cs
- DesignerVerbCollection.cs
- WebPartMenuStyle.cs
- SequenceFullException.cs
- Accessible.cs
- TrustManager.cs
- DispatcherOperation.cs
- DataViewManager.cs
- ScriptingJsonSerializationSection.cs
- StyleBamlRecordReader.cs
- TextOutput.cs
- ManifestResourceInfo.cs
- SrgsDocumentParser.cs
- GlyphRunDrawing.cs
- TextFragmentEngine.cs
- VisualStateManager.cs
- HWStack.cs
- SystemEvents.cs
- APCustomTypeDescriptor.cs
- CodeNamespace.cs
- DatagridviewDisplayedBandsData.cs
- UIElementIsland.cs
- DataGridAddNewRow.cs
- SecurityTokenTypes.cs
- KnownColorTable.cs
- ListViewItemSelectionChangedEvent.cs
- UInt64.cs
- MSAANativeProvider.cs