Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- XamlSerializerUtil.cs
- DelegatingTypeDescriptionProvider.cs
- MsmqReceiveHelper.cs
- TraceRecord.cs
- RightsManagementProvider.cs
- Message.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- MenuBindingsEditor.cs
- ClrProviderManifest.cs
- CmsUtils.cs
- HierarchicalDataSourceControl.cs
- DesignColumn.cs
- UIElementIsland.cs
- PrivacyNoticeElement.cs
- DataGridViewLinkCell.cs
- ServiceContractAttribute.cs
- ModuleBuilder.cs
- WebPartTransformerAttribute.cs
- BuilderElements.cs
- CaretElement.cs
- AesManaged.cs
- DependencyPropertyKey.cs
- FillBehavior.cs
- ISessionStateStore.cs
- DataSourceDesigner.cs
- Point4D.cs
- GridViewAutomationPeer.cs
- StringFunctions.cs
- PrintDialog.cs
- FormatSettings.cs
- NumberFormatInfo.cs
- RowBinding.cs
- HMACMD5.cs
- PropertyAccessVisitor.cs
- X509Chain.cs
- UIElement.cs
- Opcode.cs
- Constants.cs
- XmlSchemaElement.cs
- DataTableMapping.cs
- SaveFileDialog.cs
- Point3DConverter.cs
- RtfToken.cs
- SplitterDesigner.cs
- ExecutionEngineException.cs
- FontFamilyValueSerializer.cs
- WebServiceData.cs
- X509Chain.cs
- OletxDependentTransaction.cs
- COM2ICategorizePropertiesHandler.cs
- Transform.cs
- MethodCallExpression.cs
- FixedSOMTextRun.cs
- ScrollContentPresenter.cs
- COM2TypeInfoProcessor.cs
- WpfPayload.cs
- SqlTypeConverter.cs
- HttpFileCollection.cs
- AddInActivator.cs
- _ConnectOverlappedAsyncResult.cs
- SubordinateTransaction.cs
- CompiledIdentityConstraint.cs
- IntegrationExceptionEventArgs.cs
- DebugHandleTracker.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- TransactionContextManager.cs
- MsmqIntegrationSecurityElement.cs
- DistinctQueryOperator.cs
- Char.cs
- SqlTriggerAttribute.cs
- Helper.cs
- TransformPatternIdentifiers.cs
- COM2Properties.cs
- BaseDataListPage.cs
- SystemWebExtensionsSectionGroup.cs
- COM2FontConverter.cs
- ProfileGroupSettingsCollection.cs
- WinInet.cs
- CLRBindingWorker.cs
- DataGridRow.cs
- MimeMultiPart.cs
- SafeSecurityHelper.cs
- ParserHooks.cs
- ControlPropertyNameConverter.cs
- EncoderParameter.cs
- SchemaMapping.cs
- EncodingNLS.cs
- RewritingValidator.cs
- DataGridParentRows.cs
- TimeIntervalCollection.cs
- DataChangedEventManager.cs
- XPathQilFactory.cs
- IdentityModelDictionary.cs
- DbDataSourceEnumerator.cs
- LinkedResourceCollection.cs
- UnsafeNativeMethods.cs
- StaticSiteMapProvider.cs
- HiddenField.cs
- BaseComponentEditor.cs
- WebHttpEndpoint.cs