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
- RuntimeArgumentHandle.cs
- TextSimpleMarkerProperties.cs
- PropertyEntry.cs
- DictionaryBase.cs
- autovalidator.cs
- baseshape.cs
- OleDbDataReader.cs
- NamedPipeConnectionPoolSettings.cs
- ListenerSessionConnection.cs
- CodeLabeledStatement.cs
- ExplicitDiscriminatorMap.cs
- DetailsView.cs
- SecurityTokenRequirement.cs
- HtmlInputHidden.cs
- DbProviderFactory.cs
- PackageDigitalSignatureManager.cs
- TextRangeSerialization.cs
- SecurityCapabilities.cs
- SimpleBitVector32.cs
- ContentType.cs
- ScrollEventArgs.cs
- ImageField.cs
- WindowPatternIdentifiers.cs
- CqlBlock.cs
- MenuRendererStandards.cs
- ContractMapping.cs
- TypeToArgumentTypeConverter.cs
- TableItemStyle.cs
- MiniLockedBorderGlyph.cs
- JapaneseCalendar.cs
- AssociationSet.cs
- NoResizeHandleGlyph.cs
- DoubleCollection.cs
- TreeNodeMouseHoverEvent.cs
- HealthMonitoringSection.cs
- MethodRental.cs
- UnSafeCharBuffer.cs
- GridEntry.cs
- Thumb.cs
- KeyTime.cs
- SizeChangedEventArgs.cs
- DataGridViewIntLinkedList.cs
- WhiteSpaceTrimStringConverter.cs
- RotateTransform.cs
- X509ChainElement.cs
- DocumentSequenceHighlightLayer.cs
- Point3D.cs
- TextAction.cs
- ActionFrame.cs
- EntityDataSourceState.cs
- RuleValidation.cs
- StylusPointCollection.cs
- CodeDomLocalizationProvider.cs
- TimerElapsedEvenArgs.cs
- XmlDataDocument.cs
- HttpPostLocalhostServerProtocol.cs
- XmlAnyElementAttribute.cs
- RichTextBoxAutomationPeer.cs
- XmlLanguage.cs
- CornerRadiusConverter.cs
- HttpRequest.cs
- TreeNodeStyleCollectionEditor.cs
- MsmqProcessProtocolHandler.cs
- RewritingPass.cs
- AddInAdapter.cs
- MetadataArtifactLoaderResource.cs
- TypeSemantics.cs
- Rules.cs
- ContainerUIElement3D.cs
- InvalidWorkflowException.cs
- objectquery_tresulttype.cs
- ExpressionReplacer.cs
- FacetValueContainer.cs
- ToolboxItemFilterAttribute.cs
- Pair.cs
- ReadOnlyAttribute.cs
- HtmlTableCell.cs
- UnorderedHashRepartitionStream.cs
- SqlConnectionStringBuilder.cs
- _BufferOffsetSize.cs
- SoapSchemaMember.cs
- CounterSampleCalculator.cs
- TextParagraph.cs
- DurationConverter.cs
- Operators.cs
- KeyGestureConverter.cs
- StaticTextPointer.cs
- CorrelationResolver.cs
- ColorConvertedBitmap.cs
- FirstMatchCodeGroup.cs
- TryExpression.cs
- FactoryId.cs
- Pair.cs
- DataGridViewRowEventArgs.cs
- TableFieldsEditor.cs
- LoadedEvent.cs
- StyleTypedPropertyAttribute.cs
- TableLayoutCellPaintEventArgs.cs
- TdsParserStaticMethods.cs
- PowerModeChangedEventArgs.cs