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
- String.cs
- FormsAuthentication.cs
- QilValidationVisitor.cs
- Menu.cs
- OperationInfo.cs
- LocalIdCollection.cs
- IERequestCache.cs
- SystemInformation.cs
- SafePointer.cs
- ViewStateException.cs
- arabicshape.cs
- DataContractSerializerMessageContractImporter.cs
- WindowsFormsHostAutomationPeer.cs
- MenuTracker.cs
- PngBitmapEncoder.cs
- XmlSchemaSet.cs
- ControlValuePropertyAttribute.cs
- Propagator.cs
- BuilderInfo.cs
- DocumentXmlWriter.cs
- RepeaterItem.cs
- BuildManagerHost.cs
- DrawListViewItemEventArgs.cs
- UnionCqlBlock.cs
- CheckBoxFlatAdapter.cs
- TouchesOverProperty.cs
- FuncTypeConverter.cs
- SpecularMaterial.cs
- XmlQueryOutput.cs
- ActivationArguments.cs
- RepeaterItemCollection.cs
- MimeMultiPart.cs
- EmbossBitmapEffect.cs
- Models.cs
- UserValidatedEventArgs.cs
- ResXResourceSet.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- WebServiceEnumData.cs
- CompositionAdorner.cs
- XhtmlTextWriter.cs
- DataTableCollection.cs
- TransformerTypeCollection.cs
- XmlNode.cs
- BindValidationContext.cs
- WebConfigurationFileMap.cs
- DataTableReader.cs
- Component.cs
- GeneralTransform2DTo3D.cs
- NavigationProperty.cs
- TextSpanModifier.cs
- XmlSchemaInferenceException.cs
- PatternMatcher.cs
- WhileDesigner.xaml.cs
- FixedFlowMap.cs
- NetCodeGroup.cs
- SendActivityEventArgs.cs
- XamlBuildTaskServices.cs
- AbstractSvcMapFileLoader.cs
- CodeCatchClauseCollection.cs
- BaseAppDomainProtocolHandler.cs
- SettingsPropertyValueCollection.cs
- PrintDocument.cs
- FunctionQuery.cs
- FlowNode.cs
- ContractTypeNameElement.cs
- WebPartVerbCollection.cs
- X500Name.cs
- Tokenizer.cs
- SamlDoNotCacheCondition.cs
- ZoneIdentityPermission.cs
- Nodes.cs
- XPathNavigatorKeyComparer.cs
- ArgumentException.cs
- MessageQueueEnumerator.cs
- ObjectViewEntityCollectionData.cs
- PauseStoryboard.cs
- ContextMenu.cs
- CalculatedColumn.cs
- ExponentialEase.cs
- XmlSchemaAttributeGroupRef.cs
- DynamicPropertyReader.cs
- ExceptionValidationRule.cs
- ForeignKeyConstraint.cs
- HiddenFieldPageStatePersister.cs
- DesignerAttribute.cs
- MatrixKeyFrameCollection.cs
- SAPICategories.cs
- DataSourceIDConverter.cs
- PackagePartCollection.cs
- SafeProcessHandle.cs
- RegularExpressionValidator.cs
- BitHelper.cs
- CommentEmitter.cs
- xml.cs
- HostedNamedPipeTransportManager.cs
- AutomationAttributeInfo.cs
- DataObjectPastingEventArgs.cs
- BinaryMethodMessage.cs
- CommonBehaviorsSection.cs
- HttpResponseHeader.cs