Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / SByteConverter.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpContext.cs
- ParameterCollection.cs
- ContentPlaceHolder.cs
- MediaElementAutomationPeer.cs
- TextModifier.cs
- NetDataContractSerializer.cs
- ToolboxControl.cs
- ConfigurationStrings.cs
- DataSourceControl.cs
- EncryptedKeyHashIdentifierClause.cs
- TrustLevel.cs
- DrawingContextWalker.cs
- TemplateKeyConverter.cs
- RelationshipEndCollection.cs
- SystemNetHelpers.cs
- OneWayElement.cs
- DocumentViewerBase.cs
- PerformanceCountersElement.cs
- ToolboxItemAttribute.cs
- QueryStoreStatusRequest.cs
- _DigestClient.cs
- HtmlImage.cs
- WsatRegistrationHeader.cs
- HandlerWithFactory.cs
- EdmToObjectNamespaceMap.cs
- safex509handles.cs
- ControlParameter.cs
- ScrollChrome.cs
- ConfigurationPropertyCollection.cs
- WorkBatch.cs
- WebPartDisplayMode.cs
- DoubleAnimationUsingKeyFrames.cs
- AttachedPropertyBrowsableAttribute.cs
- MemberCollection.cs
- DayRenderEvent.cs
- CapabilitiesSection.cs
- SqlDelegatedTransaction.cs
- DataControlButton.cs
- PictureBoxDesigner.cs
- PropertyRef.cs
- RtfToken.cs
- ReferenceEqualityComparer.cs
- WebPartCancelEventArgs.cs
- XPathNavigatorKeyComparer.cs
- UIInitializationException.cs
- Operand.cs
- WebBrowser.cs
- ButtonAutomationPeer.cs
- TypedDatasetGenerator.cs
- PrintPreviewGraphics.cs
- OleDbPermission.cs
- AttributeCollection.cs
- BoolExpressionVisitors.cs
- VirtualPathUtility.cs
- RowSpanVector.cs
- BehaviorEditorPart.cs
- WebPartConnection.cs
- DataGridViewSelectedCellCollection.cs
- TreeView.cs
- SmtpAuthenticationManager.cs
- DocumentOutline.cs
- PenContext.cs
- CachedTypeface.cs
- GregorianCalendarHelper.cs
- SspiNegotiationTokenAuthenticatorState.cs
- KeyFrames.cs
- DataGridRowsPresenter.cs
- ServiceHttpHandlerFactory.cs
- Int16KeyFrameCollection.cs
- QEncodedStream.cs
- Formatter.cs
- GridViewColumn.cs
- UriTemplatePathPartiallyEquivalentSet.cs
- HMACSHA384.cs
- DbDataAdapter.cs
- InternalConfigEventArgs.cs
- EventItfInfo.cs
- AuthenticationModuleElementCollection.cs
- PathTooLongException.cs
- XamlTypeMapperSchemaContext.cs
- XmlDocument.cs
- XmlSchemaSimpleTypeRestriction.cs
- PropertyValueChangedEvent.cs
- RangeValuePatternIdentifiers.cs
- CompilerState.cs
- DataGridViewTopRowAccessibleObject.cs
- EncoderNLS.cs
- ChoiceConverter.cs
- OleDbConnectionFactory.cs
- ReadOnlyDataSourceView.cs
- SessionPageStateSection.cs
- Stack.cs
- SqlConnectionStringBuilder.cs
- CommandTreeTypeHelper.cs
- AdapterUtil.cs
- RelatedView.cs
- LoginName.cs
- CreateUserErrorEventArgs.cs
- DataSetSchema.cs
- InternalBufferOverflowException.cs