Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / ArithmeticException.cs / 1 / ArithmeticException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: ArithmeticException ** ** ** Purpose: Exception class for bad arithmetic conditions! ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Serialization; // The ArithmeticException is thrown when overflow or underflow // occurs. // [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public class ArithmeticException : SystemException { // Creates a new ArithmeticException with its message string set to // the empty string, its HRESULT set to COR_E_ARITHMETIC, // and its ExceptionInfo reference set to null. public ArithmeticException() : base(Environment.GetResourceString("Arg_ArithmeticException")) { SetErrorCode(__HResults.COR_E_ARITHMETIC); } // Creates a new ArithmeticException with its message string set to // message, its HRESULT set to COR_E_ARITHMETIC, // and its ExceptionInfo reference set to null. // public ArithmeticException(String message) : base(message) { SetErrorCode(__HResults.COR_E_ARITHMETIC); } public ArithmeticException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_ARITHMETIC); } protected ArithmeticException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListParaClient.cs
- DataGridViewEditingControlShowingEventArgs.cs
- DataGridViewColumnDesigner.cs
- DataBinding.cs
- followingsibling.cs
- SchemaElementLookUpTable.cs
- Wrapper.cs
- ViewCellRelation.cs
- DataBoundLiteralControl.cs
- TrackBar.cs
- ModelFunction.cs
- CodeSnippetExpression.cs
- BitmapEffectState.cs
- PopOutPanel.cs
- SymDocumentType.cs
- ISO2022Encoding.cs
- Quaternion.cs
- SafeEventHandle.cs
- PageStatePersister.cs
- SafeNativeMethods.cs
- Type.cs
- FormattedText.cs
- RelationalExpressions.cs
- XmlSchemaImport.cs
- Light.cs
- relpropertyhelper.cs
- DesignerFrame.cs
- DocumentSequence.cs
- Qualifier.cs
- Triplet.cs
- OdbcConnectionPoolProviderInfo.cs
- GenerateDerivedKeyRequest.cs
- LinkClickEvent.cs
- HitTestParameters3D.cs
- UserControlBuildProvider.cs
- MasterPage.cs
- RightNameExpirationInfoPair.cs
- CodeDomDecompiler.cs
- BinaryMethodMessage.cs
- embossbitmapeffect.cs
- XPathNodeIterator.cs
- ReachPageContentSerializer.cs
- SynchronizedDispatch.cs
- SchemaComplexType.cs
- EventBuilder.cs
- XPathSingletonIterator.cs
- StringArrayConverter.cs
- IPAddressCollection.cs
- WindowsUpDown.cs
- URL.cs
- WebPartZoneCollection.cs
- EntityDesignerUtils.cs
- MetadataWorkspace.cs
- SortQuery.cs
- SecurityCriticalDataForSet.cs
- Image.cs
- SpellerError.cs
- CombinedGeometry.cs
- ProxySimple.cs
- XmlSchemaSearchPattern.cs
- MessageBuilder.cs
- UrlPath.cs
- NonBatchDirectoryCompiler.cs
- DBSchemaTable.cs
- LinqDataSourceContextEventArgs.cs
- oledbconnectionstring.cs
- DataDocumentXPathNavigator.cs
- LineProperties.cs
- ListBase.cs
- FlowDocumentReader.cs
- LocalizabilityAttribute.cs
- ConfigurationConverterBase.cs
- UniqueIdentifierService.cs
- XmlSchemaDocumentation.cs
- Base64Encoder.cs
- PagesChangedEventArgs.cs
- DesignerAutoFormatStyle.cs
- DoubleLinkListEnumerator.cs
- FocusWithinProperty.cs
- PcmConverter.cs
- QuaternionKeyFrameCollection.cs
- ListViewItemMouseHoverEvent.cs
- SettingsPropertyIsReadOnlyException.cs
- CompareInfo.cs
- ObjectStorage.cs
- TableRowGroup.cs
- TextModifier.cs
- ContractListAdapter.cs
- WebBrowsableAttribute.cs
- ConfigXmlWhitespace.cs
- Thumb.cs
- OleDragDropHandler.cs
- Opcode.cs
- Formatter.cs
- smtppermission.cs
- RegexBoyerMoore.cs
- Int32AnimationUsingKeyFrames.cs
- QuaternionValueSerializer.cs
- FormatterServicesNoSerializableCheck.cs
- HasCopySemanticsAttribute.cs