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
- BitmapEffectGroup.cs
- ToolBarButtonDesigner.cs
- SharedPerformanceCounter.cs
- NumberSubstitution.cs
- VisualTreeHelper.cs
- HttpInputStream.cs
- SpecularMaterial.cs
- WinFormsSpinner.cs
- RegexCompilationInfo.cs
- ServiceBehaviorElement.cs
- DataGridItemEventArgs.cs
- TemplateBaseAction.cs
- AggregationMinMaxHelpers.cs
- EntityContainerEmitter.cs
- SelectedGridItemChangedEvent.cs
- TrustManagerPromptUI.cs
- ChtmlImageAdapter.cs
- SiteMapProvider.cs
- ChangeDirector.cs
- StyleHelper.cs
- FunctionNode.cs
- MediaEntryAttribute.cs
- HtmlControlPersistable.cs
- DateTimeFormatInfoScanner.cs
- Options.cs
- HttpContext.cs
- StateWorkerRequest.cs
- CachedPathData.cs
- Image.cs
- ServiceDeploymentInfo.cs
- ListManagerBindingsCollection.cs
- LayoutSettings.cs
- WindowsSysHeader.cs
- MethodCallTranslator.cs
- CompilerHelpers.cs
- FillBehavior.cs
- ToolboxItemAttribute.cs
- Unit.cs
- PathStreamGeometryContext.cs
- View.cs
- ScriptComponentDescriptor.cs
- Configuration.cs
- MatrixTransform3D.cs
- PolicyException.cs
- LogicalMethodInfo.cs
- AliasedExpr.cs
- Point3D.cs
- UserControlCodeDomTreeGenerator.cs
- Exceptions.cs
- updatecommandorderer.cs
- Point3DAnimationUsingKeyFrames.cs
- BlurBitmapEffect.cs
- HttpWriter.cs
- ReadOnlyDataSource.cs
- wgx_sdk_version.cs
- DataContractFormatAttribute.cs
- FloatUtil.cs
- EntityKeyElement.cs
- Setter.cs
- DataStorage.cs
- RowToParametersTransformer.cs
- TrackingParameters.cs
- ValueSerializerAttribute.cs
- SqlSupersetValidator.cs
- ToolStripContainerActionList.cs
- PolicyManager.cs
- WorkflowWebHostingModule.cs
- ProfileSection.cs
- EntryWrittenEventArgs.cs
- XsltLoader.cs
- InsufficientMemoryException.cs
- StateWorkerRequest.cs
- AttributeEmitter.cs
- ScriptResourceInfo.cs
- VisualBrush.cs
- LayoutEditorPart.cs
- TableLayoutPanelCellPosition.cs
- EpmTargetTree.cs
- MultiSelectRootGridEntry.cs
- SecurityDocument.cs
- ConditionCollection.cs
- OverflowException.cs
- WebSysDescriptionAttribute.cs
- XhtmlBasicControlAdapter.cs
- Config.cs
- DataGridViewTextBoxEditingControl.cs
- XmlArrayItemAttribute.cs
- Operators.cs
- ByteStack.cs
- MsmqIntegrationValidationBehavior.cs
- WindowsAuthenticationEventArgs.cs
- HtmlShim.cs
- WeakReadOnlyCollection.cs
- AsyncOperationManager.cs
- sqlinternaltransaction.cs
- PatternMatchRules.cs
- MediaElement.cs
- ProxyOperationRuntime.cs
- ZipIOExtraFieldElement.cs
- DataGridViewCheckBoxCell.cs