Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- WhitespaceRuleLookup.cs
- StretchValidation.cs
- TextSpan.cs
- XmlCDATASection.cs
- NativeMethods.cs
- HttpClientCertificate.cs
- ListChangedEventArgs.cs
- CopyCodeAction.cs
- AVElementHelper.cs
- LocalBuilder.cs
- LambdaCompiler.cs
- WebPartZone.cs
- TypeToStringValueConverter.cs
- TransportChannelFactory.cs
- WindowsBrush.cs
- ColorBlend.cs
- WmlLiteralTextAdapter.cs
- RecommendedAsConfigurableAttribute.cs
- PackageDigitalSignature.cs
- ProfileModule.cs
- NonVisualControlAttribute.cs
- MembershipSection.cs
- GenericEnumConverter.cs
- Oid.cs
- GlyphCache.cs
- WindowsListViewScroll.cs
- TextDecorations.cs
- WebPartManagerInternals.cs
- NameTable.cs
- StreamingContext.cs
- NetworkInterface.cs
- WindowsEditBoxRange.cs
- X509Certificate2.cs
- UserPreferenceChangedEventArgs.cs
- ImageUrlEditor.cs
- TextEndOfLine.cs
- HandlerBase.cs
- DataServiceEntityAttribute.cs
- CopyNodeSetAction.cs
- AnimatedTypeHelpers.cs
- BooleanConverter.cs
- MethodToken.cs
- SafeNativeMemoryHandle.cs
- BCLDebug.cs
- BrowsableAttribute.cs
- QilScopedVisitor.cs
- Stackframe.cs
- EntityDataSourceSelectingEventArgs.cs
- AgileSafeNativeMemoryHandle.cs
- LicenseProviderAttribute.cs
- UnsafeNetInfoNativeMethods.cs
- TreeNodeClickEventArgs.cs
- ByteStack.cs
- OutputCacheProfile.cs
- FastEncoderWindow.cs
- DecimalAnimationUsingKeyFrames.cs
- Bits.cs
- EventData.cs
- HwndSourceKeyboardInputSite.cs
- Match.cs
- DrawingContextWalker.cs
- ErrorFormatter.cs
- ProofTokenCryptoHandle.cs
- TextParagraphCache.cs
- HttpRequestCacheValidator.cs
- WebControlAdapter.cs
- XmlStreamStore.cs
- ScriptComponentDescriptor.cs
- ToolBarButton.cs
- CategoryGridEntry.cs
- DecoderReplacementFallback.cs
- CalendarBlackoutDatesCollection.cs
- SettingsProviderCollection.cs
- BinaryObjectInfo.cs
- ResolveCriteria.cs
- CommandDesigner.cs
- ActiveXHost.cs
- DesignerSerializationOptionsAttribute.cs
- EffectiveValueEntry.cs
- SoapDocumentServiceAttribute.cs
- PersonalizableTypeEntry.cs
- ReceiveErrorHandling.cs
- TableParaClient.cs
- WorkflowInstanceExtensionProvider.cs
- PagedDataSource.cs
- WebConfigurationManager.cs
- indexingfiltermarshaler.cs
- TableLayoutSettings.cs
- recordstatescratchpad.cs
- DiscoveryClientDocuments.cs
- SymLanguageVendor.cs
- Completion.cs
- AutoResetEvent.cs
- wmiprovider.cs
- LocatorManager.cs
- LinearGradientBrush.cs
- RecognizedWordUnit.cs
- HGlobalSafeHandle.cs
- MachineKeyConverter.cs
- DataSourceControlBuilder.cs