Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / Runtime / Serialization / FormatterConverter.cs / 1 / FormatterConverter.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: FormatterConverter ** ** ** Purpose: A base implementation of the IFormatterConverter ** interface that uses the Convert class and the ** IConvertible interface. ** ** ============================================================*/ namespace System.Runtime.Serialization { using System; using System.Globalization; [System.Runtime.InteropServices.ComVisible(true)] public class FormatterConverter : IFormatterConverter { public FormatterConverter() { } public Object Convert(Object value, Type type) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ChangeType(value, type, CultureInfo.InvariantCulture); } public Object Convert(Object value, TypeCode typeCode) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ChangeType(value, typeCode, CultureInfo.InvariantCulture); } public bool ToBoolean(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToBoolean(value, CultureInfo.InvariantCulture); } public char ToChar(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToChar(value, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public sbyte ToSByte(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToSByte(value, CultureInfo.InvariantCulture); } public byte ToByte(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToByte(value, CultureInfo.InvariantCulture); } public short ToInt16(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToInt16(value, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public ushort ToUInt16(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToUInt16(value, CultureInfo.InvariantCulture); } public int ToInt32(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToInt32(value, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public uint ToUInt32(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToUInt32(value, CultureInfo.InvariantCulture); } public long ToInt64(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToInt64(value, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public ulong ToUInt64(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToUInt64(value, CultureInfo.InvariantCulture); } public float ToSingle(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToSingle(value, CultureInfo.InvariantCulture); } public double ToDouble(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToDouble(value, CultureInfo.InvariantCulture); } public Decimal ToDecimal(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToDecimal(value, CultureInfo.InvariantCulture); } public DateTime ToDateTime(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToDateTime(value, CultureInfo.InvariantCulture); } public String ToString(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToString(value, CultureInfo.InvariantCulture); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: FormatterConverter ** ** ** Purpose: A base implementation of the IFormatterConverter ** interface that uses the Convert class and the ** IConvertible interface. ** ** ============================================================*/ namespace System.Runtime.Serialization { using System; using System.Globalization; [System.Runtime.InteropServices.ComVisible(true)] public class FormatterConverter : IFormatterConverter { public FormatterConverter() { } public Object Convert(Object value, Type type) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ChangeType(value, type, CultureInfo.InvariantCulture); } public Object Convert(Object value, TypeCode typeCode) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ChangeType(value, typeCode, CultureInfo.InvariantCulture); } public bool ToBoolean(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToBoolean(value, CultureInfo.InvariantCulture); } public char ToChar(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToChar(value, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public sbyte ToSByte(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToSByte(value, CultureInfo.InvariantCulture); } public byte ToByte(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToByte(value, CultureInfo.InvariantCulture); } public short ToInt16(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToInt16(value, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public ushort ToUInt16(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToUInt16(value, CultureInfo.InvariantCulture); } public int ToInt32(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToInt32(value, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public uint ToUInt32(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToUInt32(value, CultureInfo.InvariantCulture); } public long ToInt64(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToInt64(value, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public ulong ToUInt64(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToUInt64(value, CultureInfo.InvariantCulture); } public float ToSingle(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToSingle(value, CultureInfo.InvariantCulture); } public double ToDouble(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToDouble(value, CultureInfo.InvariantCulture); } public Decimal ToDecimal(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToDecimal(value, CultureInfo.InvariantCulture); } public DateTime ToDateTime(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToDateTime(value, CultureInfo.InvariantCulture); } public String ToString(Object value) { if (value==null) { throw new ArgumentNullException("value"); } return System.Convert.ToString(value, CultureInfo.InvariantCulture); } } } // 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
- OrderedDictionary.cs
- DataGridViewCellFormattingEventArgs.cs
- ApplicationCommands.cs
- BuildResult.cs
- ConnectionsZone.cs
- PageBuildProvider.cs
- ListArgumentProvider.cs
- SingleStorage.cs
- DataGridViewToolTip.cs
- RegisteredDisposeScript.cs
- PassportPrincipal.cs
- ListSortDescriptionCollection.cs
- cookiecollection.cs
- ImportOptions.cs
- NoClickablePointException.cs
- RenderData.cs
- AttachedPropertyMethodSelector.cs
- TiffBitmapEncoder.cs
- HashCoreRequest.cs
- ThicknessKeyFrameCollection.cs
- MailWriter.cs
- SocketAddress.cs
- PerformanceCounterPermission.cs
- ZipIOCentralDirectoryFileHeader.cs
- Encoder.cs
- XmlSchemaAny.cs
- DefaultEventAttribute.cs
- WebConfigurationHostFileChange.cs
- BuildProviderUtils.cs
- XmlSerializerNamespaces.cs
- AudioLevelUpdatedEventArgs.cs
- StorageEndPropertyMapping.cs
- SqlDataReaderSmi.cs
- SqlDataSourceCommandEventArgs.cs
- UnmanagedHandle.cs
- MeshGeometry3D.cs
- Authorization.cs
- WebPartCatalogAddVerb.cs
- CacheMemory.cs
- HtmlAnchor.cs
- IdleTimeoutMonitor.cs
- unsafenativemethodsother.cs
- DataColumnChangeEvent.cs
- ConsumerConnectionPointCollection.cs
- IPEndPointCollection.cs
- VideoDrawing.cs
- XdrBuilder.cs
- HandlerBase.cs
- ConfigXmlText.cs
- CustomErrorsSectionWrapper.cs
- ImageAttributes.cs
- Content.cs
- IApplicationTrustManager.cs
- RSAPKCS1KeyExchangeFormatter.cs
- MexBindingElement.cs
- PeerObject.cs
- StopStoryboard.cs
- TextServicesDisplayAttributePropertyRanges.cs
- RegexCompiler.cs
- ServiceReference.cs
- SecurityKeyUsage.cs
- LinqDataSourceInsertEventArgs.cs
- CodeLabeledStatement.cs
- OdbcUtils.cs
- ComMethodElement.cs
- TypeToken.cs
- HtmlHead.cs
- SmiConnection.cs
- ChildrenQuery.cs
- KnowledgeBase.cs
- CategoryAttribute.cs
- DataGridViewToolTip.cs
- ObjectStateFormatter.cs
- SplineKeyFrames.cs
- UncommonField.cs
- TextStore.cs
- TableChangeProcessor.cs
- Cursor.cs
- AvTrace.cs
- SqlDependencyListener.cs
- XmlNodeChangedEventManager.cs
- Misc.cs
- FolderNameEditor.cs
- MdiWindowListItemConverter.cs
- InternalBase.cs
- Bezier.cs
- QueuePropertyVariants.cs
- ArraySubsetEnumerator.cs
- OutputScopeManager.cs
- PropertyEmitter.cs
- Executor.cs
- SamlAuthenticationStatement.cs
- StatusBarAutomationPeer.cs
- EventManager.cs
- UnicastIPAddressInformationCollection.cs
- KnowledgeBase.cs
- ApplicationContext.cs
- HierarchicalDataSourceControl.cs
- XmlSerializer.cs
- ErrorsHelper.cs