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
- Privilege.cs
- Column.cs
- CommonRemoteMemoryBlock.cs
- XmlSchemaExporter.cs
- Ref.cs
- TextRunCache.cs
- Decimal.cs
- OleStrCAMarshaler.cs
- ContainsRowNumberChecker.cs
- URLAttribute.cs
- PerformanceCounterPermissionEntry.cs
- PowerStatus.cs
- SystemUnicastIPAddressInformation.cs
- TransactionBridgeSection.cs
- ClockController.cs
- XPathNode.cs
- AsyncCompletedEventArgs.cs
- Itemizer.cs
- StringReader.cs
- TableHeaderCell.cs
- PathParser.cs
- AdapterDictionary.cs
- ExtendLockCommand.cs
- CategoryAttribute.cs
- FieldNameLookup.cs
- PropertyOverridesTypeEditor.cs
- PenLineCapValidation.cs
- EntityViewContainer.cs
- TextEditorSpelling.cs
- TimelineGroup.cs
- TextBox.cs
- CriticalHandle.cs
- SortDescriptionCollection.cs
- TriggerCollection.cs
- PrintPreviewDialog.cs
- WeakHashtable.cs
- BitmapFrameEncode.cs
- ExtensionDataReader.cs
- DynamicMetaObject.cs
- RewritingProcessor.cs
- UpnEndpointIdentityExtension.cs
- BooleanSwitch.cs
- WebPartMovingEventArgs.cs
- InstanceKeyCompleteException.cs
- ConfigXmlSignificantWhitespace.cs
- SystemTcpStatistics.cs
- PopupEventArgs.cs
- HandleExceptionArgs.cs
- SiteMapDataSourceView.cs
- ResourceDisplayNameAttribute.cs
- PagedDataSource.cs
- CollectionMarkupSerializer.cs
- DefaultCompensation.cs
- FullTextLine.cs
- serverconfig.cs
- BaseDataListActionList.cs
- KeyTime.cs
- InheritanceContextChangedEventManager.cs
- DependencyPropertyConverter.cs
- XmlSchemaAttributeGroupRef.cs
- WizardSideBarListControlItemEventArgs.cs
- PerformanceCounterPermission.cs
- FlowLayoutPanel.cs
- FontWeightConverter.cs
- QueryCacheEntry.cs
- ImageBrush.cs
- GeometryGroup.cs
- RelationHandler.cs
- XomlCompilerHelpers.cs
- Emitter.cs
- ColorTranslator.cs
- PolyBezierSegment.cs
- GridViewDeletedEventArgs.cs
- ComplexType.cs
- SqlTypesSchemaImporter.cs
- SslStream.cs
- HttpModuleAction.cs
- PointAnimation.cs
- ListCollectionView.cs
- SimpleHandlerFactory.cs
- MethodImplAttribute.cs
- ISAPIWorkerRequest.cs
- CoTaskMemHandle.cs
- SoapElementAttribute.cs
- PathGeometry.cs
- TypeNameConverter.cs
- AllMembershipCondition.cs
- ReadOnlyDataSourceView.cs
- __ComObject.cs
- ArgumentOutOfRangeException.cs
- BinaryWriter.cs
- GridViewDeletedEventArgs.cs
- FixedSOMElement.cs
- ApplicationSecurityManager.cs
- BindingNavigator.cs
- ButtonColumn.cs
- LinqDataSourceStatusEventArgs.cs
- Menu.cs
- DbConnectionClosed.cs
- Frame.cs