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
- InitializationEventAttribute.cs
- XmlSchemaImport.cs
- HtmlInputSubmit.cs
- BitmapFrame.cs
- XmlText.cs
- TableLayoutCellPaintEventArgs.cs
- GridViewRowEventArgs.cs
- BmpBitmapDecoder.cs
- RotationValidation.cs
- CommandField.cs
- ProfileGroupSettings.cs
- DependencyPropertyChangedEventArgs.cs
- figurelength.cs
- StringInfo.cs
- BitmapEffectDrawing.cs
- AdornerLayer.cs
- ObjectListDataBindEventArgs.cs
- ObjectDataSourceView.cs
- SqlDataRecord.cs
- smtppermission.cs
- CollectionBuilder.cs
- CodeCompiler.cs
- MimeTypePropertyAttribute.cs
- Point3DValueSerializer.cs
- PlatformCulture.cs
- FileDialog_Vista.cs
- QueueException.cs
- TableChangeProcessor.cs
- HttpModuleActionCollection.cs
- UrlEncodedParameterWriter.cs
- CallSiteOps.cs
- IdSpace.cs
- Crc32.cs
- Frame.cs
- SrgsElementFactoryCompiler.cs
- FrameworkTextComposition.cs
- ListItemParagraph.cs
- WinFormsUtils.cs
- DSACryptoServiceProvider.cs
- OutputScope.cs
- MembershipPasswordException.cs
- XmlSerializationWriter.cs
- RPIdentityRequirement.cs
- PipelineModuleStepContainer.cs
- ColorConvertedBitmap.cs
- ColorAnimationUsingKeyFrames.cs
- ToolStripRendererSwitcher.cs
- Span.cs
- Operators.cs
- PageClientProxyGenerator.cs
- EntityViewGenerationAttribute.cs
- OdbcUtils.cs
- ExtensionWindowResizeGrip.cs
- DiagnosticEventProvider.cs
- ChoiceConverter.cs
- CodeMemberField.cs
- NameValueFileSectionHandler.cs
- UInt64Storage.cs
- SelectingProviderEventArgs.cs
- OleDbParameterCollection.cs
- ConfigXmlComment.cs
- PermissionToken.cs
- SendMessageContent.cs
- FieldNameLookup.cs
- ConfigurationStrings.cs
- OletxCommittableTransaction.cs
- ArgumentException.cs
- ImportException.cs
- NotConverter.cs
- TextRangeSerialization.cs
- DataGridCheckBoxColumn.cs
- SchemaImporterExtensionElementCollection.cs
- ChannelSettingsElement.cs
- StructuredTypeEmitter.cs
- XmlUtf8RawTextWriter.cs
- PrimitiveXmlSerializers.cs
- TripleDESCryptoServiceProvider.cs
- MSG.cs
- MultiSelectRootGridEntry.cs
- CommandDevice.cs
- ButtonStandardAdapter.cs
- DataPointer.cs
- SafeJobHandle.cs
- EndCreateSecurityTokenRequest.cs
- ToolStripActionList.cs
- GroupBoxAutomationPeer.cs
- HwndSourceParameters.cs
- TextChange.cs
- EventPrivateKey.cs
- ItemList.cs
- MultiplexingFormatMapping.cs
- Statements.cs
- DataGridSortCommandEventArgs.cs
- TraceContextEventArgs.cs
- BitmapMetadataEnumerator.cs
- CodeMethodReturnStatement.cs
- HighlightVisual.cs
- JumpPath.cs
- MimeTypeMapper.cs
- DropShadowBitmapEffect.cs