Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / UInt16Converter.cs / 1305376 / UInt16Converter.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 16-bit unsigned integer objects to and
/// from various other representations.
///
[HostProtection(SharedState = true)]
public class UInt16Converter : BaseNumberConverter {
///
/// The Type this converter is targeting (e.g. Int16, UInt32, etc.)
///
internal override Type TargetType {
get {
return typeof(UInt16);
}
}
///
/// Convert the given value to a string using the given radix
///
internal override object FromString(string value, int radix) {
return Convert.ToUInt16(value, radix);
}
///
/// Convert the given value to a string using the given formatInfo
///
internal override object FromString(string value, NumberFormatInfo formatInfo) {
return UInt16.Parse(value, NumberStyles.Integer, formatInfo);
}
///
/// Convert the given value to a string using the given CultureInfo
///
internal override object FromString(string value, CultureInfo culture){
return UInt16.Parse(value, culture);
}
///
/// Convert the given value from a string using the given formatInfo
///
internal override string ToString(object value, NumberFormatInfo formatInfo) {
return ((UInt16)value).ToString("G", formatInfo);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
//
// 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 16-bit unsigned integer objects to and
/// from various other representations.
///
[HostProtection(SharedState = true)]
public class UInt16Converter : BaseNumberConverter {
///
/// The Type this converter is targeting (e.g. Int16, UInt32, etc.)
///
internal override Type TargetType {
get {
return typeof(UInt16);
}
}
///
/// Convert the given value to a string using the given radix
///
internal override object FromString(string value, int radix) {
return Convert.ToUInt16(value, radix);
}
///
/// Convert the given value to a string using the given formatInfo
///
internal override object FromString(string value, NumberFormatInfo formatInfo) {
return UInt16.Parse(value, NumberStyles.Integer, formatInfo);
}
///
/// Convert the given value to a string using the given CultureInfo
///
internal override object FromString(string value, CultureInfo culture){
return UInt16.Parse(value, culture);
}
///
/// Convert the given value from a string using the given formatInfo
///
internal override string ToString(object value, NumberFormatInfo formatInfo) {
return ((UInt16)value).ToString("G", formatInfo);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ComplexTypeEmitter.cs
- StructuredProperty.cs
- ClientConvert.cs
- GPPOINT.cs
- ScriptingWebServicesSectionGroup.cs
- StorageBasedPackageProperties.cs
- BuildProviderAppliesToAttribute.cs
- BoundingRectTracker.cs
- CompilerLocalReference.cs
- ConstraintManager.cs
- CodeMemberMethod.cs
- Soap.cs
- ReadOnlyObservableCollection.cs
- Reference.cs
- ResourceDisplayNameAttribute.cs
- _TLSstream.cs
- _UncName.cs
- ConfigPathUtility.cs
- IDispatchConstantAttribute.cs
- LocalTransaction.cs
- Style.cs
- WebServiceTypeData.cs
- SqlProfileProvider.cs
- XmlSchemaSimpleContentRestriction.cs
- SafeTimerHandle.cs
- SmiEventSink.cs
- BufferedStream.cs
- X509Chain.cs
- DefaultBinder.cs
- StartUpEventArgs.cs
- SpeakProgressEventArgs.cs
- FormViewCommandEventArgs.cs
- BaseValidatorDesigner.cs
- SourceSwitch.cs
- AnnotationAdorner.cs
- EventBuilder.cs
- HttpPostClientProtocol.cs
- SequenceFullException.cs
- SynchronousChannel.cs
- CodeTypeParameter.cs
- TrustManagerPromptUI.cs
- AutomationElementIdentifiers.cs
- AddressingProperty.cs
- CustomSignedXml.cs
- MenuItem.cs
- DbSource.cs
- FullTrustAssembliesSection.cs
- MachineKeySection.cs
- OpenFileDialog.cs
- PerformanceCounterPermissionEntryCollection.cs
- RequestCachingSection.cs
- TcpTransportElement.cs
- GroupBoxAutomationPeer.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- UnsafeNativeMethods.cs
- KnownBoxes.cs
- AsymmetricKeyExchangeDeformatter.cs
- PolyLineSegment.cs
- ToolStripDropDownButton.cs
- SemaphoreSecurity.cs
- SqlProvider.cs
- ListViewInsertEventArgs.cs
- DbProviderServices.cs
- BaseDataListPage.cs
- HuffCodec.cs
- CellParagraph.cs
- ImmutableObjectAttribute.cs
- ValidationPropertyAttribute.cs
- TraceRecord.cs
- PasswordBox.cs
- BaseUriHelper.cs
- LineBreak.cs
- SolidBrush.cs
- AttachedAnnotationChangedEventArgs.cs
- FrameworkTextComposition.cs
- TreeNodeBinding.cs
- PropertyMap.cs
- _TimerThread.cs
- HttpCookiesSection.cs
- ProfileSection.cs
- MemberInfoSerializationHolder.cs
- IPPacketInformation.cs
- PtsHost.cs
- SQLSingle.cs
- ThreadAttributes.cs
- WhitespaceRuleReader.cs
- COM2Enum.cs
- AddInAdapter.cs
- HttpListenerPrefixCollection.cs
- CacheModeConverter.cs
- DataGridGeneralPage.cs
- VariantWrapper.cs
- PlatformNotSupportedException.cs
- AppLevelCompilationSectionCache.cs
- Mouse.cs
- FloaterBaseParaClient.cs
- ProxyManager.cs
- DriveNotFoundException.cs
- HiddenField.cs
- sqlcontext.cs