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
- BlurBitmapEffect.cs
- MultiDataTrigger.cs
- GenericIdentity.cs
- CreateUserWizardStep.cs
- QueryParameter.cs
- Propagator.ExtentPlaceholderCreator.cs
- TaskFormBase.cs
- XmlText.cs
- GraphicsContainer.cs
- BroadcastEventHelper.cs
- NavigationProperty.cs
- SmiEventStream.cs
- MultiSelector.cs
- XmlAttributeAttribute.cs
- QueryContinueDragEvent.cs
- Guid.cs
- ExpressionBuilderCollection.cs
- StrongNameUtility.cs
- DataGridTableStyleMappingNameEditor.cs
- UserPreferenceChangingEventArgs.cs
- SwitchElementsCollection.cs
- SiteMapNode.cs
- Context.cs
- Lease.cs
- XmlHelper.cs
- MouseActionConverter.cs
- CompilerState.cs
- OleDbCommand.cs
- OletxEnlistment.cs
- TabletDeviceInfo.cs
- LabelEditEvent.cs
- DrawingAttributesDefaultValueFactory.cs
- WorkflowItemPresenter.cs
- ResourceDisplayNameAttribute.cs
- ConditionedDesigner.cs
- QueryOptionExpression.cs
- BookmarkCallbackWrapper.cs
- EncoderParameters.cs
- SecurityPolicySection.cs
- MsmqTransportSecurity.cs
- FixUpCollection.cs
- ExpressionPrefixAttribute.cs
- BaseResourcesBuildProvider.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- TextTreeUndoUnit.cs
- ImageIndexConverter.cs
- TableDetailsCollection.cs
- XPathNavigatorReader.cs
- ParameterDataSourceExpression.cs
- SudsWriter.cs
- coordinator.cs
- ServiceObjectContainer.cs
- MimeTypeMapper.cs
- ScriptManager.cs
- Int32.cs
- VisualBrush.cs
- SqlNotificationRequest.cs
- DefaultEventAttribute.cs
- _Rfc2616CacheValidators.cs
- FormViewRow.cs
- Pair.cs
- DockPatternIdentifiers.cs
- TcpDuplicateContext.cs
- XNodeSchemaApplier.cs
- DescriptionAttribute.cs
- SurrogateSelector.cs
- BaseAppDomainProtocolHandler.cs
- EncoderExceptionFallback.cs
- FormattedText.cs
- MD5.cs
- ToolStripItemCollection.cs
- CompilerWrapper.cs
- TraceHwndHost.cs
- EventWaitHandleSecurity.cs
- TextParagraph.cs
- TypeListConverter.cs
- SchemaTypeEmitter.cs
- NodeInfo.cs
- SelectingProviderEventArgs.cs
- RenameRuleObjectDialog.Designer.cs
- SqlReferenceCollection.cs
- EditorPart.cs
- LinqDataSourceStatusEventArgs.cs
- IEnumerable.cs
- COM2ComponentEditor.cs
- FontFaceLayoutInfo.cs
- EntityDataSourceColumn.cs
- ComponentDispatcherThread.cs
- BindingWorker.cs
- DataBoundControlParameterTarget.cs
- BindingSource.cs
- Operand.cs
- GridPatternIdentifiers.cs
- RowUpdatedEventArgs.cs
- Base64Encoding.cs
- DataColumnMappingCollection.cs
- AuthStoreRoleProvider.cs
- OdbcEnvironment.cs
- TreeViewImageGenerator.cs
- PersonalizableAttribute.cs