Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / UInt32Converter.cs / 1305376 / UInt32Converter.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 UInt32Converter : BaseNumberConverter { ///Provides a type converter to convert 32-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(UInt32); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToUInt32(value, radix); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return UInt32.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 UInt32.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((UInt32)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
- FormsAuthenticationUser.cs
- ValueChangedEventManager.cs
- AvTrace.cs
- XamlReaderHelper.cs
- LabelEditEvent.cs
- XmlTextReaderImpl.cs
- Currency.cs
- EventProvider.cs
- ConvertersCollection.cs
- METAHEADER.cs
- ItemList.cs
- GenericEnumConverter.cs
- ObjectDataSourceFilteringEventArgs.cs
- DesignTimeParseData.cs
- RenderingEventArgs.cs
- QuotedPrintableStream.cs
- XPathNavigatorReader.cs
- _NegotiateClient.cs
- ComplusTypeValidator.cs
- SizeLimitedCache.cs
- ProtocolViolationException.cs
- Timer.cs
- BindingList.cs
- XmlSchemaSimpleContentRestriction.cs
- TextCompositionEventArgs.cs
- VBIdentifierTrimConverter.cs
- DataTableNewRowEvent.cs
- HttpModuleAction.cs
- QueryExpr.cs
- VectorCollectionValueSerializer.cs
- ContentType.cs
- TextEditorThreadLocalStore.cs
- CodeBinaryOperatorExpression.cs
- X509ChainElement.cs
- ConnectorMovedEventArgs.cs
- DropAnimation.xaml.cs
- SaveFileDialog.cs
- ScriptingScriptResourceHandlerSection.cs
- PathSegment.cs
- QueryModel.cs
- CleanUpVirtualizedItemEventArgs.cs
- DefaultWorkflowTransactionService.cs
- Brushes.cs
- GuidelineCollection.cs
- _ConnectOverlappedAsyncResult.cs
- SetterBase.cs
- MethodCallConverter.cs
- WorkflowTransactionService.cs
- CodeNamespace.cs
- Module.cs
- Point3D.cs
- EmptyElement.cs
- DbConnectionPoolIdentity.cs
- XsltInput.cs
- ObjectDataSourceView.cs
- EncodingTable.cs
- FontFaceLayoutInfo.cs
- StringToken.cs
- FlowStep.cs
- Variant.cs
- StrokeNodeOperations2.cs
- HtmlProps.cs
- ParseChildrenAsPropertiesAttribute.cs
- ApplicationManager.cs
- BulletedList.cs
- SelectorAutomationPeer.cs
- AssociationSetEnd.cs
- Geometry3D.cs
- OdbcParameter.cs
- ExpressionHelper.cs
- DataColumnCollection.cs
- RegexFCD.cs
- ServiceOperationListItemList.cs
- ServiceContractGenerationContext.cs
- TableDetailsRow.cs
- MaterialCollection.cs
- DataList.cs
- ObjectListShowCommandsEventArgs.cs
- InputScope.cs
- LineVisual.cs
- SqlCacheDependencyDatabaseCollection.cs
- RectAnimation.cs
- ConfigurationManager.cs
- MissingFieldException.cs
- ChildTable.cs
- SharedConnectionWorkflowTransactionService.cs
- StaticExtensionConverter.cs
- InvalidOperationException.cs
- StateDesignerConnector.cs
- TextDecoration.cs
- NavigatorOutput.cs
- FixedTextPointer.cs
- PolyBezierSegment.cs
- PageEventArgs.cs
- CommonProperties.cs
- TableLayoutColumnStyleCollection.cs
- WindowsFormsSectionHandler.cs
- CheckableControlBaseAdapter.cs
- FunctionImportMapping.cs
- DbConnectionFactory.cs