Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- OletxDependentTransaction.cs
- UnicodeEncoding.cs
- ArraySegment.cs
- Brush.cs
- DataBoundControlHelper.cs
- ConditionalAttribute.cs
- XmlSortKey.cs
- SessionIDManager.cs
- XmlSchemaSet.cs
- HandlerFactoryWrapper.cs
- LinqDataSourceValidationException.cs
- MailMessageEventArgs.cs
- TextServicesManager.cs
- M3DUtil.cs
- RegistrationServices.cs
- EventLogPermissionEntry.cs
- RuleProcessor.cs
- ErrorTolerantObjectWriter.cs
- XmlSchemaComplexType.cs
- AndCondition.cs
- RuntimeEnvironment.cs
- MatrixTransform3D.cs
- GeneralTransform3DTo2D.cs
- DataGridParentRows.cs
- KnownAssembliesSet.cs
- PropertyTabChangedEvent.cs
- LinqDataSourceHelper.cs
- ExpressionUtilities.cs
- SecurityTokenResolver.cs
- ByteAnimationUsingKeyFrames.cs
- TypefaceMap.cs
- SqlAliaser.cs
- IChannel.cs
- RsaSecurityToken.cs
- EndpointAddress.cs
- ListViewContainer.cs
- IfAction.cs
- PrintPageEvent.cs
- StringExpressionSet.cs
- MorphHelpers.cs
- StateElement.cs
- DataStreamFromComStream.cs
- DataGridItemAttachedStorage.cs
- CallbackValidatorAttribute.cs
- ListBox.cs
- CustomValidator.cs
- UIHelper.cs
- AtomContentProperty.cs
- TypeTypeConverter.cs
- Bind.cs
- ToolStripSplitButton.cs
- LineGeometry.cs
- DecimalConverter.cs
- DataSourceCache.cs
- SecurityRuntime.cs
- EntityTypeEmitter.cs
- NamedPipeAppDomainProtocolHandler.cs
- ImportCatalogPart.cs
- XamlPathDataSerializer.cs
- ClaimTypes.cs
- ItemsPanelTemplate.cs
- GeneratedCodeAttribute.cs
- RuntimeConfig.cs
- CodeDelegateCreateExpression.cs
- TreeBuilderBamlTranslator.cs
- MarkedHighlightComponent.cs
- StickyNoteAnnotations.cs
- WMIGenerator.cs
- XsltException.cs
- XmlDigitalSignatureProcessor.cs
- GuidelineCollection.cs
- HierarchicalDataSourceControl.cs
- ContentPosition.cs
- SimpleFileLog.cs
- HttpInputStream.cs
- ConnectorEditor.cs
- CroppedBitmap.cs
- HtmlSelect.cs
- CmsInterop.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- XmlValueConverter.cs
- SqlExpressionNullability.cs
- JsonWriterDelegator.cs
- TraceEventCache.cs
- CollectionView.cs
- AttributeUsageAttribute.cs
- Cursor.cs
- RectangleHotSpot.cs
- StringDictionaryCodeDomSerializer.cs
- CaseInsensitiveHashCodeProvider.cs
- WebPartConnectionsDisconnectVerb.cs
- ThreadAttributes.cs
- DeclarativeCatalogPart.cs
- DataObjectCopyingEventArgs.cs
- Math.cs
- XPathNavigator.cs
- Avt.cs
- FieldBuilder.cs
- NonDualMessageSecurityOverHttp.cs
- EnumValAlphaComparer.cs