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
- RowTypeElement.cs
- FieldMetadata.cs
- MultiPartWriter.cs
- CounterCreationDataCollection.cs
- WebServiceHandlerFactory.cs
- _HeaderInfoTable.cs
- PrintingPermissionAttribute.cs
- TerminatorSinks.cs
- TypeElement.cs
- DataSourceCache.cs
- FormsAuthenticationUser.cs
- XamlRtfConverter.cs
- PropertyValueUIItem.cs
- HtmlInputButton.cs
- XMLSchema.cs
- ContextStack.cs
- DesignerWidgets.cs
- DataBinder.cs
- DrawingContextDrawingContextWalker.cs
- Properties.cs
- InfoCardArgumentException.cs
- RequestResizeEvent.cs
- XmlHierarchicalEnumerable.cs
- PointLight.cs
- xdrvalidator.cs
- ServicePoint.cs
- WebServiceParameterData.cs
- cookiecontainer.cs
- WindowCollection.cs
- ValueUnavailableException.cs
- ExeConfigurationFileMap.cs
- HttpHostedTransportConfiguration.cs
- EntityProviderFactory.cs
- MimePart.cs
- RoleService.cs
- ToolStripContentPanel.cs
- TableItemPatternIdentifiers.cs
- COAUTHIDENTITY.cs
- WebPartTracker.cs
- RepeatButton.cs
- CommentEmitter.cs
- ChannelTracker.cs
- DebugView.cs
- DocumentOrderComparer.cs
- DesignerDataStoredProcedure.cs
- CalendarDay.cs
- processwaithandle.cs
- ICollection.cs
- Border.cs
- FontSourceCollection.cs
- ACE.cs
- DataGridViewHitTestInfo.cs
- Vars.cs
- CompiledRegexRunner.cs
- DataGridViewCellMouseEventArgs.cs
- StylusPointProperty.cs
- CodePropertyReferenceExpression.cs
- SoapAttributeAttribute.cs
- TypeInitializationException.cs
- UserControlAutomationPeer.cs
- DataGridRelationshipRow.cs
- DesignerForm.cs
- StyleXamlParser.cs
- ContainerParagraph.cs
- RichTextBox.cs
- UserControl.cs
- DirectoryLocalQuery.cs
- RectAnimationBase.cs
- DesignerProperties.cs
- FocusWithinProperty.cs
- ConnectionStringsExpressionBuilder.cs
- SizeKeyFrameCollection.cs
- OrderedDictionaryStateHelper.cs
- MemoryPressure.cs
- Hash.cs
- PageThemeParser.cs
- CorrelationValidator.cs
- PeerApplicationLaunchInfo.cs
- CodeLabeledStatement.cs
- BaseTemplateBuildProvider.cs
- Registry.cs
- ValueSerializer.cs
- DetailsViewAutoFormat.cs
- OperatingSystem.cs
- FormViewUpdatedEventArgs.cs
- XPathQilFactory.cs
- TextViewSelectionProcessor.cs
- InstancePersistenceException.cs
- TaskFormBase.cs
- FileCodeGroup.cs
- DocumentGridContextMenu.cs
- ConsumerConnectionPointCollection.cs
- FileLevelControlBuilderAttribute.cs
- Byte.cs
- Application.cs
- FactoryMaker.cs
- FileAuthorizationModule.cs
- SafeCertificateContext.cs
- XPathSelfQuery.cs
- PixelFormat.cs