Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / IndexOutOfRangeException.cs / 1305376 / IndexOutOfRangeException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: IndexOutOfRangeException ** ** ** Purpose: Exception class for invalid array indices. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Serialization; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public sealed class IndexOutOfRangeException : SystemException { public IndexOutOfRangeException() : base(Environment.GetResourceString("Arg_IndexOutOfRangeException")) { SetErrorCode(__HResults.COR_E_INDEXOUTOFRANGE); } public IndexOutOfRangeException(String message) : base(message) { SetErrorCode(__HResults.COR_E_INDEXOUTOFRANGE); } public IndexOutOfRangeException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_INDEXOUTOFRANGE); } internal IndexOutOfRangeException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } // 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
- ColorAnimation.cs
- DESCryptoServiceProvider.cs
- ITreeGenerator.cs
- SrgsElementFactory.cs
- DataGridViewRowPostPaintEventArgs.cs
- ControlDesignerState.cs
- StateBag.cs
- PlainXmlWriter.cs
- SamlAssertion.cs
- XmlExpressionDumper.cs
- ProtocolsConfigurationEntry.cs
- DialogResultConverter.cs
- ToolStripPanelRow.cs
- Trigger.cs
- Win32.cs
- DbResourceAllocator.cs
- Menu.cs
- BitmapVisualManager.cs
- SqlCrossApplyToCrossJoin.cs
- ParagraphResult.cs
- KeyFrames.cs
- IUnknownConstantAttribute.cs
- SqlBuilder.cs
- CodeMemberProperty.cs
- FontDriver.cs
- _SecureChannel.cs
- XmlHelper.cs
- WebPartChrome.cs
- InternalBufferOverflowException.cs
- BoundPropertyEntry.cs
- UserControlBuildProvider.cs
- PersistChildrenAttribute.cs
- ComAdminInterfaces.cs
- RemoteWebConfigurationHost.cs
- UnsafeNativeMethods.cs
- Matrix3DStack.cs
- DBNull.cs
- SimpleParser.cs
- SslStream.cs
- FixedSOMTable.cs
- Catch.cs
- Evidence.cs
- HttpAsyncResult.cs
- ConfigurationException.cs
- MenuItemStyleCollection.cs
- ReservationCollection.cs
- InputBinding.cs
- ConfigUtil.cs
- ImportCatalogPart.cs
- HtmlTableRowCollection.cs
- IndexerNameAttribute.cs
- OciEnlistContext.cs
- LiteralControl.cs
- SearchForVirtualItemEventArgs.cs
- ComponentSerializationService.cs
- ProtocolViolationException.cs
- SizeKeyFrameCollection.cs
- ObjectDisposedException.cs
- XmlSchema.cs
- XmlStreamNodeWriter.cs
- ScriptingWebServicesSectionGroup.cs
- DetailsViewInsertedEventArgs.cs
- dtdvalidator.cs
- TriggerBase.cs
- initElementDictionary.cs
- GridViewCommandEventArgs.cs
- EntityCommandCompilationException.cs
- VirtualDirectoryMapping.cs
- EditorZone.cs
- StylusButtonEventArgs.cs
- parserscommon.cs
- SizeConverter.cs
- MetafileHeaderWmf.cs
- ReferentialConstraintRoleElement.cs
- ToolStripPanelRenderEventArgs.cs
- SessionEndingCancelEventArgs.cs
- SymbolEqualComparer.cs
- XamlRtfConverter.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- PeerToPeerException.cs
- IdentityReference.cs
- ToolboxItemAttribute.cs
- ExcCanonicalXml.cs
- SQLCharsStorage.cs
- CompensationParticipant.cs
- Section.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- RuntimeHandles.cs
- ObjectRef.cs
- SqlStatistics.cs
- MemberRelationshipService.cs
- Utils.cs
- NavigationFailedEventArgs.cs
- RuntimeConfigurationRecord.cs
- FontCacheUtil.cs
- ZipIOExtraFieldPaddingElement.cs
- DataAccessor.cs
- NameSpaceExtractor.cs
- CryptoApi.cs
- ObjectDesignerDataSourceView.cs