Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / UInt32Converter.cs / 1 / 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. //------------------------------------------------------------------------------ //// 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
- PartEditor.cs
- PropertyManager.cs
- IEnumerable.cs
- ElementHost.cs
- RangeValueProviderWrapper.cs
- QilLoop.cs
- AuthenticationModuleElementCollection.cs
- LicenseContext.cs
- EncoderBestFitFallback.cs
- RIPEMD160Managed.cs
- WindowsAuthenticationModule.cs
- ConstraintConverter.cs
- HostProtectionPermission.cs
- ObjectDataSourceView.cs
- EdmToObjectNamespaceMap.cs
- SortDescription.cs
- TextElementCollectionHelper.cs
- TrackingMemoryStream.cs
- InvalidFilterCriteriaException.cs
- PrintDialog.cs
- WrappedReader.cs
- BooleanFunctions.cs
- SiteMapNodeItem.cs
- RenderTargetBitmap.cs
- LineSegment.cs
- Identity.cs
- AdRotatorDesigner.cs
- SHA1.cs
- ToolStripContentPanelRenderEventArgs.cs
- TextFindEngine.cs
- MSHTMLHost.cs
- WindowsAuthenticationEventArgs.cs
- HWStack.cs
- BindingMAnagerBase.cs
- Helpers.cs
- CombinedGeometry.cs
- PackageDigitalSignature.cs
- ExclusiveTcpListener.cs
- SizeConverter.cs
- ComPlusDiagnosticTraceRecords.cs
- _NestedMultipleAsyncResult.cs
- SelectedDatesCollection.cs
- GenericTypeParameterConverter.cs
- PathBox.cs
- ReliableMessagingHelpers.cs
- CustomWebEventKey.cs
- TextRangeEditTables.cs
- SiteMapPath.cs
- UnlockInstanceCommand.cs
- AccessKeyManager.cs
- GridViewEditEventArgs.cs
- MemberProjectionIndex.cs
- HyperLinkColumn.cs
- ControlBuilder.cs
- Error.cs
- StructuredTypeEmitter.cs
- ValidatedMobileControlConverter.cs
- UserPreferenceChangedEventArgs.cs
- CapiSymmetricAlgorithm.cs
- StreamedWorkflowDefinitionContext.cs
- SettingsBindableAttribute.cs
- TextCompositionManager.cs
- ObjectManager.cs
- TdsRecordBufferSetter.cs
- XmlIgnoreAttribute.cs
- PerformanceCounterPermissionEntry.cs
- COM2FontConverter.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- ObjectConverter.cs
- XmlBaseWriter.cs
- CommonDialog.cs
- COM2PictureConverter.cs
- Expressions.cs
- SessionStateUtil.cs
- Zone.cs
- HighlightComponent.cs
- Accessors.cs
- ClientSettings.cs
- TraceLevelStore.cs
- SafeNativeMethods.cs
- PrivacyNoticeBindingElementImporter.cs
- ADConnectionHelper.cs
- Ppl.cs
- AnimationClockResource.cs
- Internal.cs
- TypeUsage.cs
- Range.cs
- HttpProfileGroupBase.cs
- TextPattern.cs
- HostingEnvironmentSection.cs
- ConversionValidationRule.cs
- CategoryAttribute.cs
- ScrollItemProviderWrapper.cs
- HttpCacheVaryByContentEncodings.cs
- UnauthorizedAccessException.cs
- ScriptControl.cs
- CacheVirtualItemsEvent.cs
- ToolStripPanelRenderEventArgs.cs
- CollaborationHelperFunctions.cs
- PartialArray.cs