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
- Certificate.cs
- TableLayoutStyleCollection.cs
- AppDomainCompilerProxy.cs
- Filter.cs
- precedingsibling.cs
- UseLicense.cs
- ProvideValueServiceProvider.cs
- AttachedPropertyDescriptor.cs
- ExceptionValidationRule.cs
- XmlDigitalSignatureProcessor.cs
- StrongName.cs
- ObjectTypeMapping.cs
- PrimaryKeyTypeConverter.cs
- TextTreeRootNode.cs
- InvalidOleVariantTypeException.cs
- SqlCharStream.cs
- PropertyEmitterBase.cs
- IDReferencePropertyAttribute.cs
- MenuBase.cs
- TimeManager.cs
- SoapFormatter.cs
- TableDetailsCollection.cs
- MasterPageParser.cs
- BinaryObjectInfo.cs
- DefaultHttpHandler.cs
- XslVisitor.cs
- ThicknessAnimation.cs
- SqlDataSourceConfigureSelectPanel.cs
- GenericUriParser.cs
- MonthCalendar.cs
- WinFormsSpinner.cs
- DurableServiceAttribute.cs
- Color.cs
- AssociationEndMember.cs
- BuildResultCache.cs
- WindowClosedEventArgs.cs
- RIPEMD160.cs
- StorageRoot.cs
- CompilerState.cs
- EntryPointNotFoundException.cs
- OuterGlowBitmapEffect.cs
- TopClause.cs
- PackagingUtilities.cs
- CodeBinaryOperatorExpression.cs
- LinkButton.cs
- StoreItemCollection.cs
- FileSystemInfo.cs
- XmlConverter.cs
- ToggleButton.cs
- FileSystemEnumerable.cs
- StateWorkerRequest.cs
- Utils.cs
- EventPropertyMap.cs
- SafeHandles.cs
- XmlWhitespace.cs
- ConfigXmlSignificantWhitespace.cs
- Transform.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- SpotLight.cs
- ImportCatalogPart.cs
- CheckBox.cs
- ByteViewer.cs
- NavigationExpr.cs
- AttributeTable.cs
- MethodCallTranslator.cs
- SimpleHandlerBuildProvider.cs
- Subordinate.cs
- BuildManagerHost.cs
- ObjectParameterCollection.cs
- CommandID.cs
- SignatureDescription.cs
- PartialCachingAttribute.cs
- SqlCacheDependencyDatabaseCollection.cs
- ConfigUtil.cs
- TypeBuilder.cs
- AsymmetricKeyExchangeFormatter.cs
- IndexedSelectQueryOperator.cs
- SecurityPermission.cs
- MatrixConverter.cs
- KeyedPriorityQueue.cs
- GZipStream.cs
- CodeGen.cs
- StringResourceManager.cs
- Rotation3DAnimation.cs
- Exceptions.cs
- BitmapEffectCollection.cs
- XmlnsDictionary.cs
- ReferentialConstraintRoleElement.cs
- HeaderedContentControl.cs
- BitmapEffectInput.cs
- CompensationTokenData.cs
- VersionedStream.cs
- ControlPersister.cs
- TextFormatterImp.cs
- SharedUtils.cs
- PolicyManager.cs
- DateTimeOffsetConverter.cs
- ProxyWebPart.cs
- Delegate.cs
- XmlDictionaryWriter.cs