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;
///
/// Provides a type
/// converter to convert single-precision, floating point number objects to and from various other
/// representations.
///
[HostProtection(SharedState = true)]
public class SingleConverter : BaseNumberConverter {
///
/// 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;
///
/// Provides a type
/// converter to convert single-precision, floating point number objects to and from various other
/// representations.
///
[HostProtection(SharedState = true)]
public class SingleConverter : BaseNumberConverter {
///
/// 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
- EtwTrace.cs
- EncodingTable.cs
- SimpleMailWebEventProvider.cs
- RowUpdatingEventArgs.cs
- RevocationPoint.cs
- EmbeddedMailObject.cs
- WorkflowApplication.cs
- InteropBitmapSource.cs
- WCFServiceClientProxyGenerator.cs
- PersonalizablePropertyEntry.cs
- ConstraintConverter.cs
- OracleBoolean.cs
- PageCatalogPart.cs
- ServiceX509SecurityTokenProvider.cs
- NameNode.cs
- linebase.cs
- ReferencedType.cs
- WindowsGraphics2.cs
- WindowCollection.cs
- Directory.cs
- WebHttpDispatchOperationSelectorData.cs
- HtmlTextArea.cs
- RenderingEventArgs.cs
- EventHandlersStore.cs
- PeerName.cs
- RectAnimationBase.cs
- DefaultAuthorizationContext.cs
- RawMouseInputReport.cs
- TableStyle.cs
- TypedRowGenerator.cs
- ServiceModelConfigurationSectionGroup.cs
- InputBinder.cs
- SplitContainer.cs
- ComponentCommands.cs
- ResXFileRef.cs
- FlowNode.cs
- ExpandButtonVisibilityConverter.cs
- WindowsBrush.cs
- InlineUIContainer.cs
- TraceListeners.cs
- TemplateBindingExpressionConverter.cs
- GridItemPatternIdentifiers.cs
- RuleSetCollection.cs
- ListItemCollection.cs
- DelayedRegex.cs
- Icon.cs
- RenderContext.cs
- Configuration.cs
- SspiHelper.cs
- ConsoleKeyInfo.cs
- ConfigurationLockCollection.cs
- AccessorTable.cs
- ModuleBuilder.cs
- Label.cs
- DataGridClipboardCellContent.cs
- ProfileParameter.cs
- StringDictionary.cs
- TextTreeNode.cs
- DesignerAutoFormatStyle.cs
- CircleEase.cs
- DebuggerAttributes.cs
- SystemWebCachingSectionGroup.cs
- Model3D.cs
- HeaderLabel.cs
- XmlSerializerNamespaces.cs
- NetStream.cs
- DataBoundControlDesigner.cs
- LocalizabilityAttribute.cs
- MultiSelectRootGridEntry.cs
- Section.cs
- PerfCounters.cs
- DelegatedStream.cs
- StorageEntityContainerMapping.cs
- IRCollection.cs
- ToolStripMenuItem.cs
- PagePropertiesChangingEventArgs.cs
- IProvider.cs
- BrowserCapabilitiesFactory.cs
- RouteValueExpressionBuilder.cs
- DoubleAnimationUsingPath.cs
- EmptyStringExpandableObjectConverter.cs
- ComplexTypeEmitter.cs
- CompositeFontFamily.cs
- Hash.cs
- CompositeFontParser.cs
- MultiBinding.cs
- CollectionChangeEventArgs.cs
- Base64Decoder.cs
- ContextQuery.cs
- FlowLayout.cs
- ISFTagAndGuidCache.cs
- FormatConvertedBitmap.cs
- TextEndOfParagraph.cs
- ServiceCredentials.cs
- GenerateScriptTypeAttribute.cs
- CalendarDateRange.cs
- ProgressiveCrcCalculatingStream.cs
- SerializationEventsCache.cs
- EventMappingSettings.cs
- CriticalExceptions.cs