Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- AppDomainInfo.cs
- Rules.cs
- FontEmbeddingManager.cs
- TextDecorationCollection.cs
- QuaternionRotation3D.cs
- StreamUpgradeProvider.cs
- DictionaryItemsCollection.cs
- RequestCacheEntry.cs
- Message.cs
- DataProtection.cs
- _LoggingObject.cs
- ContextProperty.cs
- LinkDescriptor.cs
- HealthMonitoringSection.cs
- HtmlWindowCollection.cs
- HtmlForm.cs
- MeasureData.cs
- HiddenField.cs
- CommandEventArgs.cs
- SQLUtility.cs
- ListViewAutomationPeer.cs
- SharedDp.cs
- Helper.cs
- CategoryNameCollection.cs
- ToolStripOverflowButton.cs
- Animatable.cs
- Match.cs
- MenuCommandService.cs
- XmlDataImplementation.cs
- SignHashRequest.cs
- PropertyBuilder.cs
- RuntimeResourceSet.cs
- RayMeshGeometry3DHitTestResult.cs
- PropertyNames.cs
- EventListener.cs
- ManifestSignedXml.cs
- SingleAnimation.cs
- AsymmetricKeyExchangeFormatter.cs
- XmlTextEncoder.cs
- SoapCommonClasses.cs
- WorkflowMarkupSerializationManager.cs
- XmlIterators.cs
- RequestTimeoutManager.cs
- Configuration.cs
- EncoderParameter.cs
- FormatVersion.cs
- IgnoreSectionHandler.cs
- DbConnectionFactory.cs
- ChtmlLinkAdapter.cs
- ProcessModule.cs
- MonitoringDescriptionAttribute.cs
- TextLineResult.cs
- IPCCacheManager.cs
- TypeCodeDomSerializer.cs
- ProtocolViolationException.cs
- WebPartEventArgs.cs
- BaseDataListPage.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- CalculatedColumn.cs
- RunInstallerAttribute.cs
- ProxyElement.cs
- SecureStringHasher.cs
- RelationshipType.cs
- Attributes.cs
- SaveCardRequest.cs
- XPathParser.cs
- PreloadHost.cs
- ArgumentNullException.cs
- PrintDocument.cs
- ContractCodeDomInfo.cs
- BitmapMetadata.cs
- GlyphRunDrawing.cs
- AttributeCollection.cs
- TrackingRecordPreFilter.cs
- WorkflowElementDialog.cs
- __Error.cs
- DataGridViewToolTip.cs
- ExpressionSelection.cs
- DataGridViewSortCompareEventArgs.cs
- HtmlButton.cs
- WmlSelectionListAdapter.cs
- DebugTraceHelper.cs
- TextRangeAdaptor.cs
- HttpConfigurationSystem.cs
- UpdatePanelTrigger.cs
- JournalEntryListConverter.cs
- MonitoringDescriptionAttribute.cs
- MultipartIdentifier.cs
- SQLMembershipProvider.cs
- CommandValueSerializer.cs
- ActiveXHelper.cs
- ETagAttribute.cs
- DefaultMemberAttribute.cs
- XamlStyleSerializer.cs
- ActivityCodeGenerator.cs
- ApplicationInfo.cs
- ExpressionLexer.cs
- ToolStripRendererSwitcher.cs
- TrackingProfileDeserializationException.cs
- WorkflowInstanceRecord.cs