Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RuntimeWrappedException.cs
- SortKey.cs
- BlurEffect.cs
- RuntimeHandles.cs
- SystemThemeKey.cs
- SqlServices.cs
- _DigestClient.cs
- RoleGroupCollection.cs
- LogManagementAsyncResult.cs
- SourceElementsCollection.cs
- ItemCollection.cs
- CodeNamespace.cs
- SqlClientPermission.cs
- SByteConverter.cs
- _SSPIWrapper.cs
- FunctionImportElement.cs
- DetailsViewRowCollection.cs
- ColumnMapTranslator.cs
- ToolStripContentPanel.cs
- DataContractSet.cs
- CompilationLock.cs
- Line.cs
- RequestCacheEntry.cs
- TextElementCollection.cs
- Transactions.cs
- CodePropertyReferenceExpression.cs
- TreeNodeClickEventArgs.cs
- GenericUI.cs
- FrameworkPropertyMetadata.cs
- ToolStripProgressBar.cs
- SQLInt64Storage.cs
- XmlSchemaAppInfo.cs
- TextWriterTraceListener.cs
- Rotation3DAnimationBase.cs
- SqlProcedureAttribute.cs
- PTConverter.cs
- TCPListener.cs
- DateTimeFormatInfoScanner.cs
- ProxyHelper.cs
- InvokeMemberBinder.cs
- ListViewGroupConverter.cs
- SchemaName.cs
- UseManagedPresentationBindingElementImporter.cs
- ConfigurationStrings.cs
- StringDictionaryCodeDomSerializer.cs
- DSASignatureDeformatter.cs
- OrderingQueryOperator.cs
- X509CertificateValidationMode.cs
- ConditionalAttribute.cs
- RMPermissions.cs
- SettingsBindableAttribute.cs
- ActivityValidator.cs
- PerfCounters.cs
- DesignerToolboxInfo.cs
- Int16Animation.cs
- ExeConfigurationFileMap.cs
- SQLByteStorage.cs
- UnsafeNativeMethodsPenimc.cs
- Win32.cs
- PrintControllerWithStatusDialog.cs
- TextChange.cs
- ProcessModule.cs
- RightNameExpirationInfoPair.cs
- EncryptedKey.cs
- DocumentPageViewAutomationPeer.cs
- CultureSpecificStringDictionary.cs
- ForceCopyBuildProvider.cs
- SlotInfo.cs
- SimpleMailWebEventProvider.cs
- DataSourceHelper.cs
- StandardTransformFactory.cs
- ArgumentException.cs
- login.cs
- ContentOperations.cs
- SymbolEqualComparer.cs
- SetIndexBinder.cs
- Matrix3D.cs
- SubpageParagraph.cs
- _LocalDataStoreMgr.cs
- SafeHandle.cs
- FormsAuthenticationModule.cs
- GraphicsPathIterator.cs
- CLSCompliantAttribute.cs
- WebPartVerbCollection.cs
- MouseGestureConverter.cs
- GeometryDrawing.cs
- GeneratedContractType.cs
- TextModifierScope.cs
- VoiceChangeEventArgs.cs
- UserMapPath.cs
- SequentialWorkflowRootDesigner.cs
- LinkedResource.cs
- __TransparentProxy.cs
- HMACMD5.cs
- SqlClientPermission.cs
- BounceEase.cs
- DocumentScope.cs
- UnsafeNativeMethods.cs
- ComplexBindingPropertiesAttribute.cs
- SoapSchemaImporter.cs