Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / UInt16Converter.cs / 1 / 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; ////// [HostProtection(SharedState = true)] public class UInt16Converter : BaseNumberConverter { ///Provides a type converter to convert 16-bit unsigned integer objects to and /// from various other representations. ////// 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; ////// [HostProtection(SharedState = true)] public class UInt16Converter : BaseNumberConverter { ///Provides a type converter to convert 16-bit unsigned integer objects to and /// from various other representations. ////// 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
- RowUpdatingEventArgs.cs
- WindowsListViewSubItem.cs
- BulletedListDesigner.cs
- PropertyDescriptorCollection.cs
- NonVisualControlAttribute.cs
- SuppressIldasmAttribute.cs
- SrgsElement.cs
- MergeFilterQuery.cs
- DbCommandDefinition.cs
- DataSvcMapFile.cs
- FormatConvertedBitmap.cs
- BufferedReadStream.cs
- Image.cs
- BrowserCapabilitiesFactoryBase.cs
- MarshalByValueComponent.cs
- ObjectReferenceStack.cs
- SecurityKeyUsage.cs
- StructuralCache.cs
- WebPartConnectionsCloseVerb.cs
- SerialStream.cs
- CodeObject.cs
- Trace.cs
- XmlBinaryReader.cs
- TypedElement.cs
- HtmlShimManager.cs
- WorkflowInstanceTerminatedRecord.cs
- SortQuery.cs
- ListBoxItemAutomationPeer.cs
- LeftCellWrapper.cs
- ComplexObject.cs
- HttpCacheParams.cs
- CorrelationResolver.cs
- DiscoveryUtility.cs
- CodeNamespace.cs
- DocumentDesigner.cs
- Metadata.cs
- CodeDelegateCreateExpression.cs
- ConfigurationSettings.cs
- sqlpipe.cs
- TextParagraphView.cs
- PartialTrustHelpers.cs
- FixedBufferAttribute.cs
- XPathNodeIterator.cs
- Maps.cs
- initElementDictionary.cs
- FixedSOMLineCollection.cs
- InstanceDescriptor.cs
- SafeFileMappingHandle.cs
- Tracer.cs
- ProgressBar.cs
- ConfigXmlAttribute.cs
- GeometryHitTestResult.cs
- sqlinternaltransaction.cs
- TitleStyle.cs
- SerializationEventsCache.cs
- MediaEntryAttribute.cs
- BreakRecordTable.cs
- SqlUserDefinedTypeAttribute.cs
- CollectionChangeEventArgs.cs
- VectorCollectionConverter.cs
- LabelTarget.cs
- PKCS1MaskGenerationMethod.cs
- ClientConfigurationHost.cs
- ChildTable.cs
- AnimationClock.cs
- ManagementBaseObject.cs
- DocumentManager.cs
- TrackingStringDictionary.cs
- AttributeProviderAttribute.cs
- Rectangle.cs
- ExpressionVisitorHelpers.cs
- PropertyChangedEventArgs.cs
- Container.cs
- WebPartConnection.cs
- MappingException.cs
- SchemaMapping.cs
- WindowsPrincipal.cs
- OleDbPermission.cs
- XmlStringTable.cs
- RolePrincipal.cs
- SafeNativeMethods.cs
- UdpDiscoveryEndpointElement.cs
- XsltCompileContext.cs
- InternalConfigHost.cs
- KeyedHashAlgorithm.cs
- SqlRecordBuffer.cs
- SqlDelegatedTransaction.cs
- UnsafeNativeMethods.cs
- HttpCookiesSection.cs
- Int16AnimationBase.cs
- HtmlInputSubmit.cs
- Contracts.cs
- ComUdtElementCollection.cs
- AssemblyAttributes.cs
- DataServiceHostWrapper.cs
- AndCondition.cs
- ValueExpressions.cs
- DataPagerFieldCollection.cs
- SafeNativeMethods.cs
- DesignTableCollection.cs