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
- WindowsClaimSet.cs
- documentation.cs
- ListViewItemSelectionChangedEvent.cs
- ToolStripActionList.cs
- ObjectKeyFrameCollection.cs
- TemplateColumn.cs
- ExpressionQuoter.cs
- RotateTransform.cs
- MethodBuilder.cs
- DeleteHelper.cs
- HiddenFieldPageStatePersister.cs
- FileDialogPermission.cs
- _HTTPDateParse.cs
- HtmlTernaryTree.cs
- FormsAuthenticationModule.cs
- LayoutUtils.cs
- ToolStripDropDownClosedEventArgs.cs
- XPathAncestorQuery.cs
- MimePart.cs
- RuntimeWrappedException.cs
- DataControlField.cs
- ParseNumbers.cs
- DataProtection.cs
- PeerInvitationResponse.cs
- ImplicitInputBrush.cs
- FontCacheLogic.cs
- WrapPanel.cs
- TimeStampChecker.cs
- ImageKeyConverter.cs
- BamlReader.cs
- MaskedTextBox.cs
- TextBoxView.cs
- MD5Cng.cs
- ResourceCategoryAttribute.cs
- TypeUtil.cs
- WebPartConnectionCollection.cs
- RelatedCurrencyManager.cs
- ButtonRenderer.cs
- ListControlActionList.cs
- ActiveXHost.cs
- AutomationPropertyInfo.cs
- RequestCachePolicyConverter.cs
- Avt.cs
- TraceInternal.cs
- LineUtil.cs
- CaseInsensitiveComparer.cs
- TokenizerHelper.cs
- UnsafeNativeMethods.cs
- DoWorkEventArgs.cs
- ScriptResourceAttribute.cs
- WsatTransactionFormatter.cs
- CatalogPartDesigner.cs
- DesignerDataParameter.cs
- TabControlAutomationPeer.cs
- DataBindingExpressionBuilder.cs
- QilTernary.cs
- UnitySerializationHolder.cs
- ColorInterpolationModeValidation.cs
- ChangeTracker.cs
- LabelLiteral.cs
- PerformanceCounterPermissionEntry.cs
- X509Chain.cs
- SourceFileBuildProvider.cs
- DataServiceConfiguration.cs
- ToolStripSplitButton.cs
- ModelUIElement3D.cs
- PartBasedPackageProperties.cs
- HtmlInputControl.cs
- QilBinary.cs
- CatalogPart.cs
- Visual.cs
- ImportFileRequest.cs
- PeerNodeAddress.cs
- DirectoryRedirect.cs
- Error.cs
- VariableQuery.cs
- LookupBindingPropertiesAttribute.cs
- AdCreatedEventArgs.cs
- SmiContextFactory.cs
- ListBoxAutomationPeer.cs
- BulletedListEventArgs.cs
- SourceInterpreter.cs
- HttpProfileBase.cs
- PopOutPanel.cs
- DependencyPropertyChangedEventArgs.cs
- ListViewGroup.cs
- PeerName.cs
- DispatcherOperation.cs
- KeyFrames.cs
- QilStrConcatenator.cs
- SvcFileManager.cs
- Item.cs
- PerfProviderCollection.cs
- CheckBoxBaseAdapter.cs
- DesignerHelpers.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- XmlQueryOutput.cs
- PropertyPushdownHelper.cs
- SqlAggregateChecker.cs
- PhonemeEventArgs.cs