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
- OleDbWrapper.cs
- CanExecuteRoutedEventArgs.cs
- GeometryValueSerializer.cs
- PolicyVersion.cs
- SubstitutionResponseElement.cs
- SolidBrush.cs
- MarshalDirectiveException.cs
- ConnectionManagementElementCollection.cs
- SemanticTag.cs
- ManifestSignatureInformation.cs
- RegionData.cs
- ToolBar.cs
- XmlFormatExtensionPointAttribute.cs
- SoapAttributes.cs
- WebPartConnectionsCancelEventArgs.cs
- TableLayoutColumnStyleCollection.cs
- BinHexEncoder.cs
- ListViewCancelEventArgs.cs
- ExclusiveHandleList.cs
- ListViewTableCell.cs
- StatusStrip.cs
- FromReply.cs
- UriExt.cs
- NetNamedPipeSecurity.cs
- PreProcessInputEventArgs.cs
- GAC.cs
- InputProcessorProfilesLoader.cs
- ExeConfigurationFileMap.cs
- EmptyEnumerator.cs
- WindowsListViewSubItem.cs
- DeferredSelectedIndexReference.cs
- X509CertificateTrustedIssuerElementCollection.cs
- PermissionAttributes.cs
- FtpWebRequest.cs
- MessageBox.cs
- WebScriptClientGenerator.cs
- BookmarkList.cs
- HandlerMappingMemo.cs
- ReadOnlyActivityGlyph.cs
- UnsafeNativeMethods.cs
- NoClickablePointException.cs
- HtmlInputSubmit.cs
- Section.cs
- CodeMemberField.cs
- PropertyMap.cs
- ScrollItemPattern.cs
- DataGridViewIntLinkedList.cs
- StringSource.cs
- Image.cs
- GridViewCancelEditEventArgs.cs
- OutputCacheProfile.cs
- UnconditionalPolicy.cs
- EmptyQuery.cs
- ViewGenerator.cs
- InlineCollection.cs
- AdornerLayer.cs
- IndexedEnumerable.cs
- HostingEnvironmentException.cs
- XamlToRtfParser.cs
- ReadOnlyDataSourceView.cs
- HwndMouseInputProvider.cs
- log.cs
- ExpressionVisitor.cs
- NetWebProxyFinder.cs
- GroupDescription.cs
- ActivitiesCollection.cs
- XmlUtf8RawTextWriter.cs
- IsolatedStorageFilePermission.cs
- Parser.cs
- EditorPartChrome.cs
- Gdiplus.cs
- SqlFacetAttribute.cs
- WebPageTraceListener.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- ProxyElement.cs
- XmlQueryStaticData.cs
- XmlNodeComparer.cs
- HttpCachePolicyWrapper.cs
- MultiByteCodec.cs
- SqlDependencyUtils.cs
- DragStartedEventArgs.cs
- AttributeData.cs
- BulletedListDesigner.cs
- CapabilitiesState.cs
- CheckableControlBaseAdapter.cs
- BindingSource.cs
- ConnectionStringSettingsCollection.cs
- DataGridTableStyleMappingNameEditor.cs
- FormViewInsertedEventArgs.cs
- ISSmlParser.cs
- ObjectPersistData.cs
- CellIdBoolean.cs
- RightsManagementEncryptedStream.cs
- MyContact.cs
- TypeUsage.cs
- DomainConstraint.cs
- WebEvents.cs
- Pen.cs
- SharedDp.cs
- HttpApplication.cs