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
- HttpFileCollection.cs
- CssClassPropertyAttribute.cs
- ParsedAttributeCollection.cs
- BatchStream.cs
- GacUtil.cs
- updateconfighost.cs
- WebBrowserUriTypeConverter.cs
- ListMarkerSourceInfo.cs
- XPathSelfQuery.cs
- SemaphoreSecurity.cs
- HashAlgorithm.cs
- DispatcherFrame.cs
- BitmapMetadataBlob.cs
- DataTable.cs
- CodeParameterDeclarationExpressionCollection.cs
- TextLine.cs
- PathNode.cs
- SqlTriggerContext.cs
- XmlEnumAttribute.cs
- EmptyEnumerator.cs
- Privilege.cs
- XamlSerializerUtil.cs
- RadioButtonBaseAdapter.cs
- DataGridViewToolTip.cs
- SqlDelegatedTransaction.cs
- WebSysDefaultValueAttribute.cs
- UpdateManifestForBrowserApplication.cs
- CompositeControlDesigner.cs
- FieldAccessException.cs
- AdRotator.cs
- ThreadStartException.cs
- BaseDataListDesigner.cs
- Wizard.cs
- SqlRecordBuffer.cs
- XmlAggregates.cs
- CannotUnloadAppDomainException.cs
- ContractReference.cs
- AutomationPropertyInfo.cs
- DurableInstanceManager.cs
- ReferenceEqualityComparer.cs
- XmlSchemaInclude.cs
- SQLDoubleStorage.cs
- Font.cs
- TimerElapsedEvenArgs.cs
- PrintDialog.cs
- LogicalCallContext.cs
- MimeImporter.cs
- DataGridCaption.cs
- DefaultPropertyAttribute.cs
- DataGridViewToolTip.cs
- BoundColumn.cs
- DataObject.cs
- UserMapPath.cs
- SmiContextFactory.cs
- XsltQilFactory.cs
- WebPartMenu.cs
- SmtpLoginAuthenticationModule.cs
- ServiceContractGenerationContext.cs
- PointAnimationUsingPath.cs
- IsolatedStorage.cs
- SoapCodeExporter.cs
- FixedNode.cs
- SchemaElementDecl.cs
- NestedContainer.cs
- FixedTextBuilder.cs
- ConfigurationStrings.cs
- BitmapEffectInputData.cs
- IntegerValidator.cs
- TransformedBitmap.cs
- HttpCachePolicyWrapper.cs
- SurrogateSelector.cs
- StringArrayConverter.cs
- FileLoadException.cs
- OdbcConnectionString.cs
- ByteKeyFrameCollection.cs
- XmlDeclaration.cs
- LocationSectionRecord.cs
- GenericEnumConverter.cs
- Speller.cs
- PointLightBase.cs
- ZoneLinkButton.cs
- InfoCardTrace.cs
- BoundingRectTracker.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- Light.cs
- Debug.cs
- ElapsedEventArgs.cs
- FrameAutomationPeer.cs
- oledbmetadatacolumnnames.cs
- Html32TextWriter.cs
- CodeEntryPointMethod.cs
- EdmPropertyAttribute.cs
- RawStylusSystemGestureInputReport.cs
- ComponentDispatcher.cs
- MaskedTextBoxTextEditor.cs
- ColumnWidthChangedEvent.cs
- WmlPhoneCallAdapter.cs
- URLMembershipCondition.cs
- WorkflowItemsPresenter.cs
- ApplicationTrust.cs