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
- XmlDataLoader.cs
- AnimationLayer.cs
- SchemeSettingElement.cs
- CmsInterop.cs
- PagesChangedEventArgs.cs
- NoResizeSelectionBorderGlyph.cs
- ButtonBase.cs
- WaitForChangedResult.cs
- HtmlTextViewAdapter.cs
- DataGridViewColumnConverter.cs
- Wildcard.cs
- CalendarTable.cs
- XmlAttributeCollection.cs
- Button.cs
- MaterialGroup.cs
- DataAccessor.cs
- XmlSchemaSimpleTypeRestriction.cs
- BindingMAnagerBase.cs
- ArrayWithOffset.cs
- IDReferencePropertyAttribute.cs
- LayoutUtils.cs
- BinarySecretKeyIdentifierClause.cs
- PropertyTabAttribute.cs
- FixedSOMFixedBlock.cs
- Expander.cs
- ListViewEditEventArgs.cs
- BookmarkScope.cs
- CryptographicAttribute.cs
- CounterSample.cs
- SingleObjectCollection.cs
- TableColumn.cs
- RawTextInputReport.cs
- EnumMemberAttribute.cs
- ButtonStandardAdapter.cs
- SystemInformation.cs
- DataGridColumnCollection.cs
- EmptyControlCollection.cs
- PrimaryKeyTypeConverter.cs
- ClipboardProcessor.cs
- DynamicDocumentPaginator.cs
- MenuTracker.cs
- HTMLTagNameToTypeMapper.cs
- EntityAdapter.cs
- StatusBarItemAutomationPeer.cs
- VisualStyleTypesAndProperties.cs
- NullEntityWrapper.cs
- TimeSpanParse.cs
- ValidationErrorCollection.cs
- UniformGrid.cs
- EditorZone.cs
- Console.cs
- NotImplementedException.cs
- LinqDataSourceDisposeEventArgs.cs
- COM2IDispatchConverter.cs
- DescendentsWalkerBase.cs
- BCLDebug.cs
- SmiContextFactory.cs
- DataGridCellEditEndingEventArgs.cs
- SqlStatistics.cs
- ContextStack.cs
- ValueUtilsSmi.cs
- SqlUtils.cs
- DynamicControlParameter.cs
- QueryPageSettingsEventArgs.cs
- MailWriter.cs
- DateTimeConverter2.cs
- ImageButton.cs
- BamlLocalizabilityResolver.cs
- ListViewGroupConverter.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- CellParaClient.cs
- OutputCacheSection.cs
- ContextStaticAttribute.cs
- Model3D.cs
- SubtreeProcessor.cs
- XmlNullResolver.cs
- Stream.cs
- ColorTransformHelper.cs
- SystemEvents.cs
- TextElement.cs
- InputReport.cs
- Vector3DCollection.cs
- ToolboxComponentsCreatingEventArgs.cs
- TableDetailsCollection.cs
- DrawingContextDrawingContextWalker.cs
- RowUpdatingEventArgs.cs
- XmlDictionary.cs
- SecurityToken.cs
- MemberCollection.cs
- SecurityKeyUsage.cs
- DataBoundControlActionList.cs
- Paragraph.cs
- XpsFixedDocumentReaderWriter.cs
- View.cs
- AsyncCompletedEventArgs.cs
- DbConnectionStringCommon.cs
- BorderGapMaskConverter.cs
- ResourceProviderFactory.cs
- SchemaCollectionCompiler.cs
- IntegerFacetDescriptionElement.cs