Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Int32Converter.cs / 1 / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataKey.cs
- xamlnodes.cs
- xmlsaver.cs
- ToolStripDropDownButton.cs
- NamespaceCollection.cs
- ConsumerConnectionPoint.cs
- ContainerSelectorBehavior.cs
- SocketAddress.cs
- assertwrapper.cs
- CanonicalizationDriver.cs
- ErrorFormatterPage.cs
- VBCodeProvider.cs
- RightsManagementInformation.cs
- PerspectiveCamera.cs
- Rectangle.cs
- PrinterResolution.cs
- MemberListBinding.cs
- DataBindingExpressionBuilder.cs
- ValueQuery.cs
- EdmConstants.cs
- storepermissionattribute.cs
- HwndMouseInputProvider.cs
- OrderingQueryOperator.cs
- CodeTypeReferenceExpression.cs
- DelegateCompletionCallbackWrapper.cs
- WebServiceReceive.cs
- OdbcConnectionFactory.cs
- InputLanguageSource.cs
- WindowHideOrCloseTracker.cs
- EntityTypeEmitter.cs
- SchemaExporter.cs
- HttpCapabilitiesBase.cs
- TableItemStyle.cs
- Size3D.cs
- Style.cs
- LambdaExpression.cs
- RelatedImageListAttribute.cs
- SapiRecognizer.cs
- SignatureHelper.cs
- ConfigurationSectionGroupCollection.cs
- ReverseQueryOperator.cs
- ConstraintConverter.cs
- UriTemplateTrieLocation.cs
- XPathNodeHelper.cs
- ServicePointManagerElement.cs
- MaskDesignerDialog.cs
- SqlCacheDependency.cs
- WorkflowApplication.cs
- ObjectPropertyMapping.cs
- WebPartEditVerb.cs
- TrustLevelCollection.cs
- PaginationProgressEventArgs.cs
- Choices.cs
- ConnectionDemuxer.cs
- InputScope.cs
- CalculatedColumn.cs
- QuaternionAnimationBase.cs
- ScriptingScriptResourceHandlerSection.cs
- Walker.cs
- TraceData.cs
- SystemIcmpV4Statistics.cs
- XsltException.cs
- Object.cs
- UserUseLicenseDictionaryLoader.cs
- SqlUserDefinedTypeAttribute.cs
- MatrixAnimationUsingKeyFrames.cs
- ExpressionList.cs
- GenericRootAutomationPeer.cs
- SqlRewriteScalarSubqueries.cs
- SettingsAttributeDictionary.cs
- Track.cs
- AssemblyResolver.cs
- DetailsViewCommandEventArgs.cs
- ClientTarget.cs
- GridLength.cs
- KeyEventArgs.cs
- DrawingAttributes.cs
- CharAnimationBase.cs
- SerializationHelper.cs
- DesignerExtenders.cs
- FrameworkElementFactory.cs
- SystemColors.cs
- ProtocolViolationException.cs
- HandlerFactoryCache.cs
- XDeferredAxisSource.cs
- Number.cs
- Visual.cs
- AssemblyBuilder.cs
- StrongNameUtility.cs
- PointKeyFrameCollection.cs
- XmlNamespaceManager.cs
- SByteConverter.cs
- TransformDescriptor.cs
- HttpResponseInternalWrapper.cs
- X509ChainPolicy.cs
- SecurityException.cs
- KnowledgeBase.cs
- RangeValidator.cs
- ConsoleTraceListener.cs
- SByteConverter.cs