singrdk/base/Imported/Bartok/System/IndexOutOfRangeException.cs

25 lines
635 B
C#
Raw Normal View History

2008-11-17 18:29:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: IndexOutOfRangeException
**
** Purpose: Exception class for invalid array indices.
**
=============================================================================*/
namespace System
{
using System;
using System.Runtime.CompilerServices;
//| <include path='docs/doc[@for="IndexOutOfRangeException"]/*' />
[RequiredByBartok]
public sealed partial class IndexOutOfRangeException : SystemException {
}
}