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
- SubstitutionDesigner.cs
- MaterialGroup.cs
- AutomationElementIdentifiers.cs
- FixedFlowMap.cs
- BuilderPropertyEntry.cs
- BoolExpressionVisitors.cs
- SuppressMergeCheckAttribute.cs
- PageParserFilter.cs
- UrlAuthorizationModule.cs
- LightweightCodeGenerator.cs
- PublisherIdentityPermission.cs
- EdmRelationshipRoleAttribute.cs
- FormConverter.cs
- OracleDataAdapter.cs
- HttpContext.cs
- CachedFontFace.cs
- HttpClientCertificate.cs
- DesignerOptionService.cs
- ServiceManagerHandle.cs
- ScriptMethodAttribute.cs
- BufferedReadStream.cs
- UpdatePanel.cs
- LogSwitch.cs
- TableCellAutomationPeer.cs
- PropertyPathConverter.cs
- GroupBox.cs
- PixelFormat.cs
- VirtualPathExtension.cs
- AutomationIdentifierGuids.cs
- ConnectionInterfaceCollection.cs
- DataGridColumn.cs
- ValueProviderWrapper.cs
- _OverlappedAsyncResult.cs
- AnnotationAdorner.cs
- XmlWrappingReader.cs
- InternalCache.cs
- DbParameterCollectionHelper.cs
- NameValueConfigurationCollection.cs
- ModelUIElement3D.cs
- DefaultCommandConverter.cs
- FileSystemInfo.cs
- MemberHolder.cs
- MLangCodePageEncoding.cs
- WebBrowserEvent.cs
- DictionaryEntry.cs
- DocumentSequenceHighlightLayer.cs
- GraphicsPathIterator.cs
- WebPartDescription.cs
- ZipPackage.cs
- Predicate.cs
- SafeHandles.cs
- Group.cs
- DebugView.cs
- ExecutionTracker.cs
- ClientBuildManagerCallback.cs
- ViewgenGatekeeper.cs
- ControlBuilder.cs
- MainMenu.cs
- SiteMapSection.cs
- PathFigure.cs
- TransformerInfoCollection.cs
- NativeMethodsCLR.cs
- BinaryCommonClasses.cs
- ThemeableAttribute.cs
- InstanceNotFoundException.cs
- MenuTracker.cs
- WebPartMovingEventArgs.cs
- SkinBuilder.cs
- DataListItem.cs
- MutexSecurity.cs
- XmlMessageFormatter.cs
- LineSegment.cs
- Rect3D.cs
- HtmlContainerControl.cs
- DoubleStorage.cs
- FaultHandlingFilter.cs
- WeakReferenceEnumerator.cs
- DuplexChannelFactory.cs
- GroupBoxRenderer.cs
- HyperlinkAutomationPeer.cs
- CurrencyManager.cs
- GeneralTransform2DTo3D.cs
- TreeView.cs
- ListCollectionView.cs
- XmlSignificantWhitespace.cs
- IISUnsafeMethods.cs
- ClientConfigPaths.cs
- OdbcRowUpdatingEvent.cs
- versioninfo.cs
- DoubleAnimationBase.cs
- SqlDataSourceQueryConverter.cs
- VisualStyleTypesAndProperties.cs
- HandlerWithFactory.cs
- SelectionRangeConverter.cs
- OracleConnectionString.cs
- Style.cs
- JsonFormatWriterGenerator.cs
- MeasurementDCInfo.cs
- XPathBinder.cs
- GridSplitterAutomationPeer.cs