Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / SByteConverter.cs / 1 / SByteConverter.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 SByteConverter : BaseNumberConverter { ///Provides a /// type converter to convert 8-bit unsigned /// 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(SByte); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToSByte(value, radix); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return SByte.Parse(value, NumberStyles.Integer, formatInfo); } ////// Convert the given value to a string using the given CultureInfo /// internal override object FromString(string value, CultureInfo culture){ return SByte.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((SByte)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 SByteConverter : BaseNumberConverter { ///Provides a /// type converter to convert 8-bit unsigned /// 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(SByte); } } ////// Convert the given value to a string using the given radix /// internal override object FromString(string value, int radix) { return Convert.ToSByte(value, radix); } ////// Convert the given value to a string using the given formatInfo /// internal override object FromString(string value, NumberFormatInfo formatInfo) { return SByte.Parse(value, NumberStyles.Integer, formatInfo); } ////// Convert the given value to a string using the given CultureInfo /// internal override object FromString(string value, CultureInfo culture){ return SByte.Parse(value, culture); } ////// Convert the given value from a string using the given formatInfo /// internal override string ToString(object value, NumberFormatInfo formatInfo) { return ((SByte)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
- Latin1Encoding.cs
- SchemaRegistration.cs
- WebPartExportVerb.cs
- InitializationEventAttribute.cs
- CommonObjectSecurity.cs
- PanelStyle.cs
- ApplicationDirectoryMembershipCondition.cs
- VariableReference.cs
- ByteAnimationBase.cs
- MsmqIntegrationBindingElement.cs
- XPathParser.cs
- WindowsStreamSecurityElement.cs
- FaultCode.cs
- NotFiniteNumberException.cs
- SplitterCancelEvent.cs
- PenContexts.cs
- ISessionStateStore.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- precedingquery.cs
- RoutedEventArgs.cs
- ExpressionBindingCollection.cs
- ExpressionNormalizer.cs
- Misc.cs
- TextFormatterImp.cs
- DataGridViewColumnCollection.cs
- CryptoApi.cs
- CodeIdentifier.cs
- CodeSnippetExpression.cs
- SchemaInfo.cs
- MetadataFile.cs
- ObjectViewFactory.cs
- Pkcs9Attribute.cs
- EntityCommandExecutionException.cs
- XmlProcessingInstruction.cs
- ToolStripDropDownClosingEventArgs.cs
- EndpointBehaviorElement.cs
- XmlNodeComparer.cs
- DataMisalignedException.cs
- XmlDataSourceDesigner.cs
- bindurihelper.cs
- StorageRoot.cs
- StrongNameMembershipCondition.cs
- DummyDataSource.cs
- XmlImplementation.cs
- PrePrepareMethodAttribute.cs
- CompositeDispatchFormatter.cs
- TheQuery.cs
- SubstitutionResponseElement.cs
- DispatcherFrame.cs
- Ray3DHitTestResult.cs
- InvokeBase.cs
- CommonDialog.cs
- CertificateElement.cs
- DBNull.cs
- ResolvePPIDRequest.cs
- Quaternion.cs
- GridViewUpdateEventArgs.cs
- SelectionListComponentEditor.cs
- ChangeProcessor.cs
- ObjectHandle.cs
- WorkflowRuntimeSection.cs
- MediaTimeline.cs
- Errors.cs
- CursorConverter.cs
- MappedMetaModel.cs
- Style.cs
- MemberAccessException.cs
- StorageBasedPackageProperties.cs
- RTLAwareMessageBox.cs
- HttpRequestCacheValidator.cs
- TraceHandlerErrorFormatter.cs
- EdmComplexPropertyAttribute.cs
- ManagedIStream.cs
- Number.cs
- ShaderEffect.cs
- AssemblyLoader.cs
- XPathBuilder.cs
- DataTableMapping.cs
- SQLMoneyStorage.cs
- BufferedGraphicsManager.cs
- QueryOptionExpression.cs
- ReferenceEqualityComparer.cs
- OutputWindow.cs
- ModifierKeysConverter.cs
- DataGridViewCheckBoxCell.cs
- UserMapPath.cs
- XamlWriter.cs
- WorkerRequest.cs
- DropTarget.cs
- Int64Converter.cs
- OperatorExpressions.cs
- WebPartVerbCollection.cs
- SByteConverter.cs
- StorageEndPropertyMapping.cs
- processwaithandle.cs
- RectKeyFrameCollection.cs
- LinkClickEvent.cs
- VBIdentifierNameEditor.cs
- PriorityChain.cs
- ShutDownListener.cs