Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / SingleConverter.cs / 1305376 / 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
- SafeCloseHandleCritical.cs
- DurationConverter.cs
- PageHandlerFactory.cs
- SQLDecimalStorage.cs
- VariantWrapper.cs
- MobileTextWriter.cs
- WSFederationHttpBindingElement.cs
- Nodes.cs
- Pair.cs
- PolyLineSegment.cs
- LogWriteRestartAreaAsyncResult.cs
- InvalidWMPVersionException.cs
- TimelineGroup.cs
- DragCompletedEventArgs.cs
- EntityDesignerUtils.cs
- OperationPickerDialog.designer.cs
- HostingMessageProperty.cs
- CookieHandler.cs
- LinkLabel.cs
- RedirectionProxy.cs
- SessionStateItemCollection.cs
- Condition.cs
- Msec.cs
- BasicDesignerLoader.cs
- SkipStoryboardToFill.cs
- IApplicationTrustManager.cs
- LongValidatorAttribute.cs
- UnsafeNativeMethods.cs
- WindowsTreeView.cs
- WindowHideOrCloseTracker.cs
- DictionaryCustomTypeDescriptor.cs
- XmlResolver.cs
- DesignSurfaceCollection.cs
- BlobPersonalizationState.cs
- UncommonField.cs
- AdjustableArrowCap.cs
- MULTI_QI.cs
- TextTreeObjectNode.cs
- XmlHierarchyData.cs
- ComponentChangingEvent.cs
- DataGridParentRows.cs
- TimeSpan.cs
- ListItemCollection.cs
- Point.cs
- HwndAppCommandInputProvider.cs
- TextBoxDesigner.cs
- InvalidWMPVersionException.cs
- Identity.cs
- Renderer.cs
- DecoderExceptionFallback.cs
- FileReservationCollection.cs
- CodeGeneratorOptions.cs
- DeflateStream.cs
- RequestResizeEvent.cs
- DataColumnMapping.cs
- JournalEntryStack.cs
- StylusTip.cs
- ValidationResult.cs
- LookupBindingPropertiesAttribute.cs
- RawTextInputReport.cs
- Int16Storage.cs
- CodeIndexerExpression.cs
- RoutedPropertyChangedEventArgs.cs
- SectionRecord.cs
- SHA512.cs
- GeometryDrawing.cs
- UTF7Encoding.cs
- FileDialog.cs
- prefixendpointaddressmessagefilter.cs
- DiagnosticStrings.cs
- EventTrigger.cs
- ListItemParagraph.cs
- IdentityVerifier.cs
- NetworkCredential.cs
- FunctionImportMapping.cs
- IPPacketInformation.cs
- StringInfo.cs
- HitTestWithPointDrawingContextWalker.cs
- ToolStripDropDownClosedEventArgs.cs
- SQLResource.cs
- ConditionCollection.cs
- TreeNodeEventArgs.cs
- EndPoint.cs
- XmlEncodedRawTextWriter.cs
- SqlNode.cs
- GPRECT.cs
- DataGridViewCellConverter.cs
- ContentElement.cs
- AppSecurityManager.cs
- WmlControlAdapter.cs
- EditableRegion.cs
- WebPartMinimizeVerb.cs
- DataGridRelationshipRow.cs
- MenuEventArgs.cs
- DetailsViewUpdatedEventArgs.cs
- InvokeHandlers.cs
- TimelineGroup.cs
- LinkDesigner.cs
- ToolStripMenuItem.cs
- Assembly.cs