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
- ControlParameter.cs
- TextBoxView.cs
- CompilerErrorCollection.cs
- StrongNameIdentityPermission.cs
- FormViewModeEventArgs.cs
- ProfessionalColors.cs
- SemanticResolver.cs
- ConstructorBuilder.cs
- x509store.cs
- Padding.cs
- ImageBrush.cs
- GenericWebPart.cs
- TextAction.cs
- BamlStream.cs
- UnsafeNativeMethods.cs
- AssertFilter.cs
- SR.Designer.cs
- ViewGenerator.cs
- TextParagraphProperties.cs
- CurrencyWrapper.cs
- SharedConnectionWorkflowTransactionService.cs
- JapaneseCalendar.cs
- SparseMemoryStream.cs
- ComNativeDescriptor.cs
- OdbcErrorCollection.cs
- SqlDataSourceView.cs
- ResourcesBuildProvider.cs
- ExceptionUtility.cs
- OleTxTransactionInfo.cs
- PixelFormats.cs
- RelationshipDetailsCollection.cs
- DBSqlParser.cs
- PropertyEmitter.cs
- Boolean.cs
- TextEditorParagraphs.cs
- RegexCompiler.cs
- NumericExpr.cs
- PathFigureCollectionValueSerializer.cs
- TimeSpanValidatorAttribute.cs
- TreeNodeCollection.cs
- ModelPropertyCollectionImpl.cs
- ObjectParameterCollection.cs
- SerTrace.cs
- PopupEventArgs.cs
- Rule.cs
- XmlSchemaSimpleTypeRestriction.cs
- TaskFileService.cs
- ConfigViewGenerator.cs
- Inline.cs
- AttributeProviderAttribute.cs
- SettingsProperty.cs
- Rfc4050KeyFormatter.cs
- _FtpControlStream.cs
- ControlBuilderAttribute.cs
- BaseValidator.cs
- OptionalColumn.cs
- DispatcherFrame.cs
- StateMachineWorkflowInstance.cs
- IDictionary.cs
- Point3DAnimationBase.cs
- DesignerForm.cs
- LicFileLicenseProvider.cs
- SecurityContextTokenCache.cs
- BufferedStream.cs
- SecurityStateEncoder.cs
- DeleteHelper.cs
- LinqDataSourceSelectEventArgs.cs
- DataViewSetting.cs
- ReadOnlyNameValueCollection.cs
- ClientBuildManagerCallback.cs
- XmlWrappingReader.cs
- HostingEnvironmentSection.cs
- RtfControls.cs
- TypeGeneratedEventArgs.cs
- StringUtil.cs
- FlowLayoutPanel.cs
- FrameworkElementAutomationPeer.cs
- DataFormats.cs
- BuildDependencySet.cs
- RawStylusInputReport.cs
- Soap12ProtocolReflector.cs
- QueueException.cs
- InlineUIContainer.cs
- SessionStateSection.cs
- BaseCodePageEncoding.cs
- ClientBase.cs
- DeobfuscatingStream.cs
- bidPrivateBase.cs
- XmlTextReader.cs
- MetadataArtifactLoaderCompositeFile.cs
- TextProviderWrapper.cs
- SqlDataSourceEnumerator.cs
- DeflateStreamAsyncResult.cs
- DataReaderContainer.cs
- RegexWorker.cs
- SqlCacheDependencyDatabaseCollection.cs
- ObjectRef.cs
- ObjectViewFactory.cs
- Font.cs
- TripleDESCryptoServiceProvider.cs