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
- GeneralTransform3D.cs
- SQLGuidStorage.cs
- PropertyFilter.cs
- TaiwanLunisolarCalendar.cs
- TextLineBreak.cs
- selecteditemcollection.cs
- DbConnectionInternal.cs
- GradientStop.cs
- WebConfigurationHostFileChange.cs
- XmlSchemaComplexContentRestriction.cs
- ToolboxItemLoader.cs
- MediaElement.cs
- KeyedCollection.cs
- Package.cs
- Stopwatch.cs
- TrackingStringDictionary.cs
- TextFormatterContext.cs
- InstanceDataCollection.cs
- OutOfProcStateClientManager.cs
- Triplet.cs
- SmtpReplyReader.cs
- ToolStripItemBehavior.cs
- BamlWriter.cs
- Vector3dCollection.cs
- PingOptions.cs
- ExpressionBuilderContext.cs
- FontSourceCollection.cs
- FatalException.cs
- StrokeNodeEnumerator.cs
- DataSourceView.cs
- BinaryVersion.cs
- BasicViewGenerator.cs
- Drawing.cs
- SQLInt64.cs
- WebPartActionVerb.cs
- SqlMethodAttribute.cs
- RSACryptoServiceProvider.cs
- BrowserCapabilitiesCompiler.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- DecoderFallback.cs
- InkSerializer.cs
- CollectionViewGroupInternal.cs
- TextServicesDisplayAttributePropertyRanges.cs
- SoapEnvelopeProcessingElement.cs
- DeleteIndexBinder.cs
- EventLogLink.cs
- WebEvents.cs
- HebrewNumber.cs
- HtmlInputRadioButton.cs
- SplineKeyFrames.cs
- GridViewPageEventArgs.cs
- ModelTreeManager.cs
- EntityDataSourceState.cs
- Pkcs7Signer.cs
- HtmlTableCell.cs
- ApplicationContext.cs
- DesignerLoader.cs
- TextEditorSpelling.cs
- ReflectionHelper.cs
- DataGridColumnHeaderAutomationPeer.cs
- ListViewGroupConverter.cs
- FixedSOMTableCell.cs
- CorrelationManager.cs
- SiteMapDataSource.cs
- TransactionInterop.cs
- XmlLanguage.cs
- EntityDataSourceWizardForm.cs
- ListViewGroupConverter.cs
- DataGrid.cs
- ExpressionConverter.cs
- WSSecurityXXX2005.cs
- LightweightCodeGenerator.cs
- MailFileEditor.cs
- OleDbRowUpdatedEvent.cs
- Double.cs
- CommandPlan.cs
- DataFormats.cs
- SerializationStore.cs
- CallbackHandler.cs
- OracleColumn.cs
- WmpBitmapDecoder.cs
- DataRowView.cs
- ExternalDataExchangeService.cs
- VisualBasicSettingsHandler.cs
- EnvironmentPermission.cs
- WebBrowserNavigatingEventHandler.cs
- DecimalConverter.cs
- GetParentChain.cs
- SemanticKeyElement.cs
- WorkflowItemsPresenter.cs
- AlignmentYValidation.cs
- _IPv6Address.cs
- PasswordTextNavigator.cs
- MissingManifestResourceException.cs
- PersonalizationStateInfoCollection.cs
- UpDownEvent.cs
- SystemUnicastIPAddressInformation.cs
- XamlNamespaceHelper.cs
- CroppedBitmap.cs
- StatusBar.cs