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
- BufferModesCollection.cs
- EditCommandColumn.cs
- AlternationConverter.cs
- XmlValidatingReaderImpl.cs
- TemplateColumn.cs
- MiniModule.cs
- FileSystemInfo.cs
- ValidationEventArgs.cs
- BindingMemberInfo.cs
- TextTreeTextElementNode.cs
- EditorZone.cs
- DecimalAnimation.cs
- PasswordBoxAutomationPeer.cs
- HandlerElement.cs
- DbModificationCommandTree.cs
- CodeLabeledStatement.cs
- DiagnosticTraceRecords.cs
- TraversalRequest.cs
- BuildManagerHost.cs
- JulianCalendar.cs
- GC.cs
- ElementFactory.cs
- DetailsViewUpdateEventArgs.cs
- ErrorFormatter.cs
- RegionInfo.cs
- PopupEventArgs.cs
- CheckoutException.cs
- ImageListUtils.cs
- AnimationException.cs
- OSEnvironmentHelper.cs
- TransformValueSerializer.cs
- Msec.cs
- DataControlCommands.cs
- UInt32Converter.cs
- PropertyBuilder.cs
- OrderByExpression.cs
- SchemaTableOptionalColumn.cs
- DockPanel.cs
- DurableTimerExtension.cs
- Rect3DValueSerializer.cs
- PenLineCapValidation.cs
- VirtualizingStackPanel.cs
- FileDetails.cs
- VideoDrawing.cs
- ToolStripProgressBar.cs
- ContextStaticAttribute.cs
- DiscoveryServerProtocol.cs
- XmlILAnnotation.cs
- VirtualDirectoryMapping.cs
- AssemblyHash.cs
- RootBrowserWindowAutomationPeer.cs
- XmlAtomErrorReader.cs
- DataServiceConfiguration.cs
- HierarchicalDataSourceDesigner.cs
- Nodes.cs
- FormViewInsertedEventArgs.cs
- PointCollectionConverter.cs
- ProxySimple.cs
- X509IssuerSerialKeyIdentifierClause.cs
- AmbiguousMatchException.cs
- ResourceSet.cs
- CompilerLocalReference.cs
- MissingMethodException.cs
- WindowsPrincipal.cs
- DurableInstanceProvider.cs
- UnauthorizedWebPart.cs
- ShaderRenderModeValidation.cs
- TableRowsCollectionEditor.cs
- ErasingStroke.cs
- GeneralTransform2DTo3D.cs
- X509Extension.cs
- GeneralTransform3D.cs
- XmlSchemaSimpleContentExtension.cs
- ExecutionScope.cs
- XmlSchemaImporter.cs
- RolePrincipal.cs
- StylusOverProperty.cs
- RoleServiceManager.cs
- CustomAttributeBuilder.cs
- BlurEffect.cs
- CollectionDataContractAttribute.cs
- fixedPageContentExtractor.cs
- SecurityContext.cs
- DataGridViewCheckBoxColumn.cs
- Rect3D.cs
- DataTemplate.cs
- ItemAutomationPeer.cs
- RadioButton.cs
- RegionData.cs
- ToolboxItemCollection.cs
- ToolStripDesignerUtils.cs
- DBNull.cs
- CrossSiteScriptingValidation.cs
- OrderedDictionary.cs
- CssClassPropertyAttribute.cs
- DependencyPropertyHelper.cs
- TogglePattern.cs
- TraceHwndHost.cs
- MemberRestriction.cs
- HitTestParameters3D.cs