Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / UInt64Converter.cs / 1 / UInt64Converter.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 UInt64Converter : BaseNumberConverter { ///Provides a type converter to convert 64-bit unsigned integer objects to and /// from various other representations. ////// The Type this converter is targeting (e.g. Int16, UInt64, etc.) /// internal override Type TargetType { get { return typeof(UInt64); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToUInt64(value, radix); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return UInt64.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 UInt64.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((UInt64)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 UInt64Converter : BaseNumberConverter { ///Provides a type converter to convert 64-bit unsigned integer objects to and /// from various other representations. ////// The Type this converter is targeting (e.g. Int16, UInt64, etc.) /// internal override Type TargetType { get { return typeof(UInt64); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToUInt64(value, radix); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return UInt64.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 UInt64.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((UInt64)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
- SectionInput.cs
- WindowsServiceCredential.cs
- FileSystemEnumerable.cs
- XmlWrappingReader.cs
- DebugView.cs
- MimeBasePart.cs
- EndOfStreamException.cs
- ExpandCollapseProviderWrapper.cs
- MimeBasePart.cs
- MD5.cs
- PersonalizableAttribute.cs
- IncrementalReadDecoders.cs
- DmlSqlGenerator.cs
- ProcessHost.cs
- RequestCachingSection.cs
- Nullable.cs
- TableStyle.cs
- HeaderFilter.cs
- TypeDependencyAttribute.cs
- DependencyPropertyKind.cs
- MatrixCamera.cs
- SchemaInfo.cs
- ViewgenContext.cs
- TaiwanCalendar.cs
- KerberosSecurityTokenProvider.cs
- SafePEFileHandle.cs
- PathFigureCollectionConverter.cs
- DispatcherHookEventArgs.cs
- InteropAutomationProvider.cs
- GatewayDefinition.cs
- DebugView.cs
- CustomAttributeBuilder.cs
- TextChange.cs
- AnonymousIdentificationSection.cs
- OrderedEnumerableRowCollection.cs
- _NegoState.cs
- Bidi.cs
- ListItemsPage.cs
- ListViewAutomationPeer.cs
- DateTimeValueSerializer.cs
- Package.cs
- UserPreferenceChangedEventArgs.cs
- SecurityHelper.cs
- EmptyReadOnlyDictionaryInternal.cs
- TextInfo.cs
- JsonDataContract.cs
- TimeSpanSecondsConverter.cs
- InputScopeNameConverter.cs
- PasswordValidationException.cs
- SourceItem.cs
- Model3DCollection.cs
- ActivityDesignerAccessibleObject.cs
- ToolboxItemAttribute.cs
- WebPartExportVerb.cs
- ToolStripPanelCell.cs
- InputReportEventArgs.cs
- IsolatedStorageException.cs
- InputScopeAttribute.cs
- SettingsProviderCollection.cs
- TTSEngineProxy.cs
- XmlAnyAttributeAttribute.cs
- BooleanConverter.cs
- StreamGeometryContext.cs
- ValueChangedEventManager.cs
- PrincipalPermission.cs
- LinqDataSourceSelectEventArgs.cs
- HMACSHA1.cs
- ServicePoint.cs
- DrawingCollection.cs
- Crypto.cs
- ByteAnimationUsingKeyFrames.cs
- SqlAggregateChecker.cs
- Translator.cs
- LogReservationCollection.cs
- URL.cs
- NumberAction.cs
- NamedElement.cs
- SqlDataSourceStatusEventArgs.cs
- CmsInterop.cs
- SafeMILHandleMemoryPressure.cs
- WebBrowser.cs
- AnonymousIdentificationSection.cs
- NamespaceMapping.cs
- ProxyHwnd.cs
- DataColumnMappingCollection.cs
- CustomError.cs
- TrackingCondition.cs
- QilDataSource.cs
- TreeNodeSelectionProcessor.cs
- VoiceObjectToken.cs
- DataSourceXmlElementAttribute.cs
- PermissionSetEnumerator.cs
- NullableBoolConverter.cs
- DispatcherTimer.cs
- WebPartConnectionsConfigureVerb.cs
- PreviewPrintController.cs
- SecurityTokenException.cs
- IQueryable.cs
- ContainerVisual.cs
- TraceUtility.cs