Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Int32Converter.cs / 1305376 / Int32Converter.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 Int32Converter : BaseNumberConverter { ///Provides a type converter to convert 32-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(Int32); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToInt32(value, radix); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return Int32.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 Int32.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((Int32)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
- WebPartConnectionsCloseVerb.cs
- ArraySubsetEnumerator.cs
- XmlCharCheckingReader.cs
- ButtonColumn.cs
- RetrieveVirtualItemEventArgs.cs
- OleDbWrapper.cs
- PowerEase.cs
- InstanceData.cs
- ConnectionPoint.cs
- MailWebEventProvider.cs
- AttributeXamlType.cs
- Vector3D.cs
- IisNotInstalledException.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- PagesSection.cs
- ConstructorBuilder.cs
- TiffBitmapEncoder.cs
- SerializationFieldInfo.cs
- WebMessageEncoderFactory.cs
- MouseEvent.cs
- DependencyPropertyHelper.cs
- XamlSerializerUtil.cs
- UpdatePanelControlTrigger.cs
- ToolStripLocationCancelEventArgs.cs
- SecurityTokenInclusionMode.cs
- Rect3D.cs
- ItemsControlAutomationPeer.cs
- TraceSection.cs
- SqlSelectClauseBuilder.cs
- InfoCardKeyedHashAlgorithm.cs
- SchemaCreator.cs
- StringSorter.cs
- DataTableReaderListener.cs
- Geometry.cs
- DataServiceKeyAttribute.cs
- TrustManagerPromptUI.cs
- MutableAssemblyCacheEntry.cs
- ConnectionStringsExpressionBuilder.cs
- RenderData.cs
- MediaCommands.cs
- FormViewCommandEventArgs.cs
- MsmqHostedTransportManager.cs
- TemplateBindingExpressionConverter.cs
- DetailsViewCommandEventArgs.cs
- RenderData.cs
- Faults.cs
- FontUnitConverter.cs
- DataSourceHelper.cs
- XsdDataContractImporter.cs
- Schema.cs
- SecureUICommand.cs
- PropertyGeneratedEventArgs.cs
- SiteMapDataSourceView.cs
- Context.cs
- PlatformNotSupportedException.cs
- SettingsPropertyCollection.cs
- TableItemPatternIdentifiers.cs
- SqlGenericUtil.cs
- TimeoutValidationAttribute.cs
- Sorting.cs
- Rect.cs
- NetPeerTcpBinding.cs
- SequentialUshortCollection.cs
- DesignerRegion.cs
- ThicknessAnimationUsingKeyFrames.cs
- WorkflowEventArgs.cs
- UncommonField.cs
- PageContent.cs
- CommandHelpers.cs
- Debugger.cs
- WebPartPersonalization.cs
- ObjectManager.cs
- ImageCodecInfoPrivate.cs
- CornerRadius.cs
- ValidationRule.cs
- BitmapMetadata.cs
- SqlLiftWhereClauses.cs
- CachedFontFamily.cs
- ProgressBarAutomationPeer.cs
- MonthChangedEventArgs.cs
- Int16Converter.cs
- WsdlBuildProvider.cs
- ApplyImportsAction.cs
- CollectionViewGroupInternal.cs
- ProxyWebPartConnectionCollection.cs
- WeakReferenceEnumerator.cs
- IDQuery.cs
- Baml2006SchemaContext.cs
- SoapBinding.cs
- PropertyReferenceExtension.cs
- ContentTextAutomationPeer.cs
- ProviderCommandInfoUtils.cs
- DataBoundControlHelper.cs
- PaperSource.cs
- Asn1Utilities.cs
- EventLogEntry.cs
- EtwTrace.cs
- ParserStreamGeometryContext.cs
- SemanticKeyElement.cs
- FormClosedEvent.cs