Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Int64Converter.cs / 1305376 / Int64Converter.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 Int64Converter : BaseNumberConverter { ///Provides a type converter to convert 64-bit signed 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(Int64); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToInt64(value, radix); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return Int64.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 Int64.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((Int64)value).ToString("G", formatInfo); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WriteableBitmap.cs
- DoubleLinkListEnumerator.cs
- PointCollection.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- SystemIcons.cs
- XmlAttributeAttribute.cs
- ComplusTypeValidator.cs
- Int32Rect.cs
- HttpContext.cs
- TextDpi.cs
- NativeMethodsCLR.cs
- MDIClient.cs
- NameGenerator.cs
- ObjectPersistData.cs
- HyperLinkColumn.cs
- DesignParameter.cs
- VersionConverter.cs
- DataGridTableCollection.cs
- FastEncoderWindow.cs
- FileVersionInfo.cs
- EncryptionUtility.cs
- ZipFileInfo.cs
- HttpApplication.cs
- IpcPort.cs
- Setter.cs
- InstanceNameConverter.cs
- PropertyValidationContext.cs
- ThreadExceptionEvent.cs
- CodeTryCatchFinallyStatement.cs
- ComboBoxAutomationPeer.cs
- MultiDataTrigger.cs
- QueueProcessor.cs
- HwndSourceParameters.cs
- MemoryStream.cs
- ReturnEventArgs.cs
- ActivityStateQuery.cs
- WindowsIPAddress.cs
- TrackBarRenderer.cs
- Point4DValueSerializer.cs
- RegexCompilationInfo.cs
- CqlErrorHelper.cs
- EncoderParameters.cs
- WebConfigurationHost.cs
- DataServiceKeyAttribute.cs
- QilVisitor.cs
- InstanceCompleteException.cs
- Binding.cs
- MachineKeyConverter.cs
- NumberFunctions.cs
- LogReserveAndAppendState.cs
- SymmetricKeyWrap.cs
- SpecularMaterial.cs
- Clause.cs
- ReceiveContextCollection.cs
- EntityDataSourceStatementEditorForm.cs
- Soap.cs
- XmlProcessingInstruction.cs
- LinkedResourceCollection.cs
- SkewTransform.cs
- ScalarRestriction.cs
- SrgsSubset.cs
- Menu.cs
- ProfileService.cs
- DataAccessor.cs
- GenericWebPart.cs
- CodePageUtils.cs
- MessageBox.cs
- CollectionChangedEventManager.cs
- QilTargetType.cs
- EditorZoneDesigner.cs
- BufferBuilder.cs
- DataGridHeaderBorder.cs
- BooleanFunctions.cs
- DetailsViewInsertedEventArgs.cs
- EntityParameterCollection.cs
- TypeDelegator.cs
- FixUp.cs
- Ops.cs
- WindowShowOrOpenTracker.cs
- PeerEndPoint.cs
- TextTreeTextElementNode.cs
- DataGridCell.cs
- COM2EnumConverter.cs
- LockRecoveryTask.cs
- ExpandCollapseProviderWrapper.cs
- PipeConnection.cs
- QueryableDataSourceView.cs
- CounterCreationDataCollection.cs
- ParallelTimeline.cs
- EntitySetRetriever.cs
- XmlException.cs
- GcSettings.cs
- StylusShape.cs
- TextInfo.cs
- ReflectionHelper.cs
- ApplicationId.cs
- _SslSessionsCache.cs
- TreeViewDesigner.cs
- ColorBlend.cs
- XPathConvert.cs