Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- FunctionMappingTranslator.cs
- TypeSource.cs
- X509ChainElement.cs
- _SafeNetHandles.cs
- RegisterInfo.cs
- ListViewItemSelectionChangedEvent.cs
- IsolationInterop.cs
- GeometryConverter.cs
- TextSegment.cs
- UseAttributeSetsAction.cs
- ServiceOperation.cs
- AttachInfo.cs
- StructuralObject.cs
- TreeView.cs
- MimeBasePart.cs
- ConversionHelper.cs
- XmlDataSource.cs
- ShapingEngine.cs
- DataColumn.cs
- DesignTable.cs
- EditorServiceContext.cs
- DataGridRow.cs
- ReachVisualSerializer.cs
- AuthorizationBehavior.cs
- FirewallWrapper.cs
- UserNameSecurityTokenAuthenticator.cs
- DateTimePickerDesigner.cs
- ControlTemplate.cs
- bindurihelper.cs
- QueryOutputWriter.cs
- GACMembershipCondition.cs
- SmtpClient.cs
- TypeBinaryExpression.cs
- Select.cs
- NavigationService.cs
- XmlEncoding.cs
- SQLInt32.cs
- GridViewRowPresenterBase.cs
- ResourceAssociationSetEnd.cs
- SrgsElementList.cs
- ConnectionStringsExpressionBuilder.cs
- SystemDiagnosticsSection.cs
- StorageModelBuildProvider.cs
- IndexedEnumerable.cs
- TextBounds.cs
- XmlEntity.cs
- ComponentEditorPage.cs
- EmbeddedObject.cs
- DirtyTextRange.cs
- MetadataFile.cs
- ExceptionUtility.cs
- EventLogRecord.cs
- CustomSignedXml.cs
- RangeValidator.cs
- dataobject.cs
- MemberCollection.cs
- DynamicMethod.cs
- EncodingInfo.cs
- Attribute.cs
- WebBrowserBase.cs
- NamedPipeChannelListener.cs
- odbcmetadatacollectionnames.cs
- TemplateColumn.cs
- CatalogPartCollection.cs
- BindingExpression.cs
- ContentElement.cs
- TogglePattern.cs
- ServiceReference.cs
- EmptyEnumerator.cs
- SmiTypedGetterSetter.cs
- ListViewCommandEventArgs.cs
- HitTestResult.cs
- pingexception.cs
- OdbcException.cs
- TreeNodeBindingCollection.cs
- ServerReliableChannelBinder.cs
- DnsEndpointIdentity.cs
- XmlChoiceIdentifierAttribute.cs
- TaiwanCalendar.cs
- SerialErrors.cs
- WebPartConnectionsDisconnectVerb.cs
- BadImageFormatException.cs
- WebPartCollection.cs
- RuntimeWrappedException.cs
- XmlNamespaceManager.cs
- CopyNamespacesAction.cs
- CodeTypeDeclaration.cs
- TextWriterTraceListener.cs
- PropertyToken.cs
- WsatServiceCertificate.cs
- HtmlTitle.cs
- CodeCatchClauseCollection.cs
- ProcessHostServerConfig.cs
- PerformanceCounterManager.cs
- FlowDocumentScrollViewer.cs
- ScaleTransform.cs
- HttpClientChannel.cs
- FunctionImportMapping.cs
- IImplicitResourceProvider.cs
- GlyphElement.cs