Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Int16Converter.cs / 1305376 / Int16Converter.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 Int16Converter : BaseNumberConverter { ///Provides a type converter to convert 16-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(Int16); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToInt16(value, radix); } ////// Convert the given value to a string using the given CultureInfo /// internal override object FromString(string value, CultureInfo culture){ return Int16.Parse(value, culture); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return Int16.Parse(value, NumberStyles.Integer, formatInfo); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((Int16)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
- LayoutTableCell.cs
- ProjectionPath.cs
- FaultException.cs
- LogWriteRestartAreaState.cs
- HandlerBase.cs
- XmlILAnnotation.cs
- TdsEnums.cs
- ScriptControlManager.cs
- peersecurityelement.cs
- GradientStopCollection.cs
- MailMessageEventArgs.cs
- TypedAsyncResult.cs
- Group.cs
- DataGridViewRowPostPaintEventArgs.cs
- Roles.cs
- TransportBindingElement.cs
- SignedXmlDebugLog.cs
- PolyLineSegment.cs
- TypeResolvingOptions.cs
- ColorBlend.cs
- TypeTypeConverter.cs
- Configuration.cs
- ListViewItemSelectionChangedEvent.cs
- ToolStripArrowRenderEventArgs.cs
- TdsParserHelperClasses.cs
- SamlAuthorizationDecisionClaimResource.cs
- CopyNamespacesAction.cs
- WebPartEventArgs.cs
- SqlUnionizer.cs
- ModuleConfigurationInfo.cs
- InternalTransaction.cs
- XPathSingletonIterator.cs
- ConfigurationSettings.cs
- XmlText.cs
- CodeDirectoryCompiler.cs
- PersistNameAttribute.cs
- Thumb.cs
- ToolStripCollectionEditor.cs
- LogAppendAsyncResult.cs
- EmptyCollection.cs
- ConnectionPoolManager.cs
- BamlTreeUpdater.cs
- ProfessionalColorTable.cs
- DrawToolTipEventArgs.cs
- ColumnTypeConverter.cs
- PropertyTabChangedEvent.cs
- compensatingcollection.cs
- MenuTracker.cs
- TabControlEvent.cs
- ContractNamespaceAttribute.cs
- SQLBytesStorage.cs
- SqlClientPermission.cs
- UInt64Storage.cs
- ProjectionQueryOptionExpression.cs
- BuildProviderAppliesToAttribute.cs
- RequiredFieldValidator.cs
- ToolStripButton.cs
- SecurityTokenRequirement.cs
- SourceSwitch.cs
- DocumentPageHost.cs
- InputLanguageProfileNotifySink.cs
- TextBox.cs
- EntityContainerEmitter.cs
- StreamReader.cs
- KeyTimeConverter.cs
- WS2007HttpBindingCollectionElement.cs
- ComponentConverter.cs
- NavigationPropertyEmitter.cs
- BitConverter.cs
- SmiRecordBuffer.cs
- EventManager.cs
- complextypematerializer.cs
- MouseDevice.cs
- MLangCodePageEncoding.cs
- OracleConnection.cs
- MessageDesigner.cs
- DbXmlEnabledProviderManifest.cs
- IBuiltInEvidence.cs
- FieldDescriptor.cs
- UpdateRecord.cs
- CodeNamespaceImport.cs
- Enum.cs
- GcSettings.cs
- X509Certificate.cs
- RepeaterItemEventArgs.cs
- Listener.cs
- MaterialGroup.cs
- RootBuilder.cs
- QueryCursorEventArgs.cs
- VirtualPathProvider.cs
- ForwardPositionQuery.cs
- OleDbConnectionInternal.cs
- ComPlusServiceLoader.cs
- ViewGenerator.cs
- XmlDataSourceView.cs
- ManifestResourceInfo.cs
- HelpHtmlBuilder.cs
- AdCreatedEventArgs.cs
- CallSite.cs
- log.cs