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
- ThemeDirectoryCompiler.cs
- MessageParameterAttribute.cs
- EdmEntityTypeAttribute.cs
- RegexGroupCollection.cs
- ObjectTag.cs
- Attributes.cs
- Double.cs
- EventRouteFactory.cs
- BufferCache.cs
- TextWriterTraceListener.cs
- UTF32Encoding.cs
- SendKeys.cs
- BamlBinaryWriter.cs
- CultureTable.cs
- ContentType.cs
- InternalSafeNativeMethods.cs
- DesignTimeParseData.cs
- PrinterResolution.cs
- CompilerWrapper.cs
- AssemblyCollection.cs
- ToolStripLocationCancelEventArgs.cs
- CompilerErrorCollection.cs
- WebBrowserProgressChangedEventHandler.cs
- AsyncOperationLifetimeManager.cs
- XmlBoundElement.cs
- Brush.cs
- URI.cs
- Cursor.cs
- XmlCharCheckingReader.cs
- SystemParameters.cs
- NullableDecimalAverageAggregationOperator.cs
- VolatileEnlistmentMultiplexing.cs
- FrameworkContentElement.cs
- CollectionBuilder.cs
- Comparer.cs
- SQLString.cs
- ClrPerspective.cs
- SchemaMerger.cs
- precedingquery.cs
- ValidationVisibilityAttribute.cs
- HttpDigestClientCredential.cs
- HMACRIPEMD160.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- CommandExpr.cs
- GridLength.cs
- SiteMap.cs
- TextAutomationPeer.cs
- HostedHttpContext.cs
- RoutedUICommand.cs
- SSmlParser.cs
- HttpListenerResponse.cs
- APCustomTypeDescriptor.cs
- CompilerCollection.cs
- Camera.cs
- WebOperationContext.cs
- StorageRoot.cs
- TransactionContextValidator.cs
- AutoResetEvent.cs
- DocumentViewerAutomationPeer.cs
- SqlBulkCopyColumnMapping.cs
- MessageBox.cs
- ContentValidator.cs
- DependencyProperty.cs
- ApplicationContext.cs
- Formatter.cs
- PageRequestManager.cs
- ToolStripScrollButton.cs
- CustomCredentialPolicy.cs
- CategoriesDocument.cs
- MarshalByValueComponent.cs
- SqlTypeConverter.cs
- XmlTextAttribute.cs
- recordstatescratchpad.cs
- DataGridViewColumnTypePicker.cs
- PasswordRecoveryAutoFormat.cs
- StateMachineTimers.cs
- HideDisabledControlAdapter.cs
- SizeAnimationUsingKeyFrames.cs
- TransformConverter.cs
- ScrollableControlDesigner.cs
- BodyGlyph.cs
- PrintPreviewGraphics.cs
- MouseButtonEventArgs.cs
- Parameter.cs
- StringStorage.cs
- ImpersonateTokenRef.cs
- UserControl.cs
- XmlSchemaAttributeGroupRef.cs
- BufferedWebEventProvider.cs
- UInt32.cs
- CryptoApi.cs
- HttpHeaderCollection.cs
- RequestContext.cs
- Walker.cs
- DiagnosticTraceSchemas.cs
- NameGenerator.cs
- HwndKeyboardInputProvider.cs
- RepeatInfo.cs
- TemplateControlCodeDomTreeGenerator.cs
- Transaction.cs