Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Int64Converter.cs / 1 / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DesignTimeVisibleAttribute.cs
- OdbcRowUpdatingEvent.cs
- XXXInfos.cs
- DataBindingHandlerAttribute.cs
- QueryReaderSettings.cs
- GregorianCalendar.cs
- DynamicDataRoute.cs
- TransactionScope.cs
- XsltFunctions.cs
- ValueChangedEventManager.cs
- InstanceBehavior.cs
- SymbolType.cs
- AssertFilter.cs
- FixedPageStructure.cs
- TypeSource.cs
- Identity.cs
- SystemColors.cs
- MultiSelectRootGridEntry.cs
- NetworkCredential.cs
- CustomError.cs
- ParameterBuilder.cs
- dsa.cs
- formatter.cs
- DependencyPropertyDescriptor.cs
- CodeValidator.cs
- UserControl.cs
- DispatcherTimer.cs
- OverrideMode.cs
- HostedHttpTransportManager.cs
- WebException.cs
- __ConsoleStream.cs
- PictureBoxDesigner.cs
- SoapExtensionImporter.cs
- TdsParserSessionPool.cs
- SessionStateContainer.cs
- SqlError.cs
- CurrentChangingEventArgs.cs
- Constraint.cs
- __ConsoleStream.cs
- Knowncolors.cs
- AppDomainGrammarProxy.cs
- Int32CollectionConverter.cs
- ResponseStream.cs
- AnonymousIdentificationModule.cs
- DoWorkEventArgs.cs
- RtfControls.cs
- AQNBuilder.cs
- SecurityPolicySection.cs
- WindowsProgressbar.cs
- BindingOperations.cs
- util.cs
- RouteParser.cs
- UniqueCodeIdentifierScope.cs
- HiddenField.cs
- QueryGeneratorBase.cs
- MD5.cs
- Int32Converter.cs
- SplashScreen.cs
- CachingParameterInspector.cs
- XmlSchemaObjectTable.cs
- PenLineJoinValidation.cs
- SymmetricAlgorithm.cs
- KeyValueConfigurationCollection.cs
- TreeNodeConverter.cs
- ListItemConverter.cs
- DocumentSchemaValidator.cs
- Graph.cs
- Transform3D.cs
- CurrentTimeZone.cs
- HttpRuntimeSection.cs
- SecurityKeyUsage.cs
- TransformationRules.cs
- EntityDataSourceDataSelection.cs
- HwndHostAutomationPeer.cs
- TrackingProfile.cs
- ConfigXmlText.cs
- ExpressionsCollectionConverter.cs
- MissingManifestResourceException.cs
- Brushes.cs
- Sentence.cs
- PresentationSource.cs
- IncrementalHitTester.cs
- OleStrCAMarshaler.cs
- EqualityArray.cs
- PropertyIDSet.cs
- MediaTimeline.cs
- SizeFConverter.cs
- HttpListenerPrefixCollection.cs
- Compiler.cs
- PropertyItemInternal.cs
- BrushMappingModeValidation.cs
- MembershipPasswordException.cs
- TemplateContent.cs
- PackagingUtilities.cs
- XmlSchemaSequence.cs
- ResourceManager.cs
- odbcmetadatacolumnnames.cs
- CreateParams.cs
- UrlAuthorizationModule.cs
- MouseBinding.cs